@trueclicks/google-ads-mcp-js
v0.3.7
Published
Gogle Ads MCP by TrueClicks enables your GPT (like Claude) to securely access and query your Google Ads account data via GAQL.app.
Readme
Google Ads MCP (Node.js)
This is the Node.js version of the TrueClicks tool for accessing the Google Ads API via GAQL using Model Context Protocol (MCP).
It exposes the following tools:
get-accounts: Lists all accessible Google Ads accounts.execute-gaql-query: Executes a GAQL query and returns the result as a formatted JSON string.
For the .NET version of this tool, see google-ads-mcp-dotnet.
Requirements
- Node.js installed
No build step is required — the repository already includes the compiled output.
Claude Configuration
To use this tool in Claude, add the following to your configuration:
{
"mcpServers": {
"gads": {
"command": "npx",
"args": [
"-y",
"@trueclicks/google-ads-mcp-js",
"--token=YOUR_BASE64_ENCODED_TOKEN"
]
}
}
}