Skip to content
VS Code

MCP Google Ads for VS Code

io.github.ayo-fam/mcp-google-ads

Multi-account Google Ads MCP: campaigns, keywords, search terms, and ad performance.

client:VS Code transport:stdio runtime:pypi

Install MCP Google Ads in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-ads-developer-token",
      "description": "GOOGLE_ADS_DEVELOPER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-ads-accounts-config",
      "description": "GOOGLE_ADS_ACCOUNTS_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "mcp-google-ads": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-google-ads-multi"
      ],
      "env": {
        "GOOGLE_ADS_DEVELOPER_TOKEN": "${input:google-ads-developer-token}",
        "GOOGLE_ADS_ACCOUNTS_CONFIG": "${input:google-ads-accounts-config}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

MCP Google Ads in other clients