Datablow Logo
Google Ads MCP

Integration & Setup Guide

Follow the steps below to download, configure, and connect the Google Ads MCP Server to your AI workspace.

← Back to MCP Connectors

🚀 Local Installation

  1. 1. Clone the GitHub Repository:
    git clone https://github.com/pralayasimha23/google-ads-mcp-connector.git
    cd google-ads-mcp-connector
  2. 2. Install Dependencies:

    Ensure you have Python 3.8+ installed locally:

    pip install -r requirements.txt
  3. 3. Configure API Credentials:

    Create a .env file in the directory root and enter your credentials:

    GOOGLE_ADS_DEVELOPER_TOKEN=your_token
    GOOGLE_ADS_CLIENT_ID=your_client_id
    GOOGLE_ADS_CLIENT_SECRET=your_client_secret
    GOOGLE_ADS_REFRESH_TOKEN=your_refresh_token
    GOOGLE_ADS_LOGIN_CUSTOMER_ID=your_manager_account_id
  4. 4. Configure Your AI Client:

    Claude Desktop Integration

    Open %APPDATA%\Claude\claude_desktop_config.json and append the server config block:

    {
      "mcpServers": {
        "google-ads": {
          "command": "python",
          "args": [
            "-u",
            "C:/path/to/google-ads-mcp-connector/server.py"
          ]
        }
      }
    }

    Antigravity IDE Integration

    Register the local connector path within your Antigravity connection settings dashboard pointing to the local server.py file.

View on GitHub →