Install
$ agentstack add mcp-cohnen-mcp-google-ads ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
[](https://mseep.ai/app/cohnen-mcp-google-ads)
Google Ads MCP
A tool that connects Google Ads with Claude AI, allowing you to analyze your advertising data through natural language conversations. This integration gives you access to campaign information, performance metrics, keyword analytics, and ad management—all through simple chat with Claude.
What Can This Tool Do For Advertising Professionals?
- Account Management
- See all your Google Ads accounts in one place
- Get account details and basic campaign information
- Campaign Analytics & Reporting
- Discover which campaigns are performing best
- Track impressions, clicks, conversions, and cost metrics
- Analyze performance trends over time
- Compare different time periods to spot changes
- Visualize your data with charts and graphs created by Claude
- Keyword & Ad Performance
- Identify top and underperforming keywords
- Analyze ad copy effectiveness
- Check quality scores and competitive metrics
- Get actionable insights on how to improve your campaigns
- Budget & Bid Management
- Monitor campaign budgets and spending
- Analyze bid strategies and performance
- Identify opportunities for optimization
- Get recommendations for budget allocation
Google Ads MCP Architecture Flow
flowchart TB
User(User) -->|Interacts with| Claude
Claude(Claude AI Assistant) -->|Makes requests to| MCP[Google Ads MCP Server]
User -->|Can also use| Cursor[Cursor AI Code Editor]
Cursor -->|Makes requests to| MCP
subgraph "MCP Server"
FastMCP[FastMCP Server]
Tools[Available Tools]
Auth[Authentication]
FastMCP -->|Exposes| Tools
FastMCP -->|Uses| Auth
end
subgraph "Google Ads Tools"
ListAccounts[list_accounts]
ExecuteGAQL[execute_gaql_query]
CampaignPerf[get_campaign_performance]
AdPerf[get_ad_performance]
RunGAQL[run_gaql]
end
Tools -->|Includes| ListAccounts
Tools -->|Includes| ExecuteGAQL
Tools -->|Includes| CampaignPerf
Tools -->|Includes| AdPerf
Tools -->|Includes| RunGAQL
subgraph "Authentication"
OAuth[OAuth 2.0 Client ID]
ServiceAccount[Service Account]
Credentials[Google Ads API Credentials]
OAuth -->|Provides| Credentials
ServiceAccount -->|Provides| Credentials
end
MCP -->|Communicates with| GoogleAdsAPI[Google Ads API]
GoogleAdsAPI -->|Returns| AdData[Advertising Data]
AdData -->|Analyzed by| Claude
AdData -->|Visualized by| Claude
AdData -->|Can be used by| Cursor
Credentials -->|Authorizes| GoogleAdsAPI
subgraph "Configuration"
EnvVars[Environment Variables]
ConfigFiles[Configuration Files]
EnvVars -->|Configures| MCP
ConfigFiles -->|Configures| Claude
ConfigFiles -->|Configures| Cursor
end
Available Tools
Here's what you can ask Claude to do once you've set up this integration:
| What You Can Ask For | What It Does | What You'll Need to Provide | |---------------------------------|-------------------------------------------------------------|----------------------------------------------------------------| | list_accounts | Shows all your Google Ads accounts | Nothing - just ask! | | execute_gaql_query | Runs a Google Ads Query Language query | Your account ID and a GAQL query | | get_campaign_performance | Shows campaign metrics with performance data | Your account ID and time period | | get_ad_performance | Detailed analysis of your ad creative performance | Your account ID and time period | | run_gaql | Runs any arbitrary GAQL query with formatting options | Your account ID, query, and format (table, JSON, or CSV) |
Using the Advanced Query Tools
The run_gaql tool is especially powerful as it allows you to run any custom Google Ads Query Language (GAQL) query. Here are some example queries you can use:
Example 1: Basic campaign metrics
SELECT
campaign.name,
metrics.clicks,
metrics.impressions
FROM campaign
WHERE segments.date DURING LAST_7DAYS
Example 2: Ad group performance
SELECT
ad_group.name,
metrics.conversions,
metrics.cost_micros
FROM ad_group
WHERE metrics.clicks > 100
Example 3: Keyword analysis
SELECT
keyword.text,
metrics.average_position,
metrics.ctr
FROM keyword_view
ORDER BY metrics.impressions DESC
For a complete list of all available tools and their detailed descriptions, ask Claude to "list tools" after setup.
Getting Started (No Coding Experience Required!)
1. Set Up Google Ads API Access
Before using this tool, you'll need to create API credentials that allow Claude to access your Google Ads data. You can choose between two authentication methods:
Option A: OAuth 2.0 Client ID (User Authentication)
Best for individual users or desktop applications:
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Ads API
- Go to "Credentials" → "Create Credentials" → "OAuth Client ID"
- Choose "Desktop Application" as the application type
- Download the OAuth client configuration file (client_secret.json)
- Create a Google Ads API Developer token (see below)
Option B: Service Account (Server-to-Server Authentication)
Better for automated systems or managing multiple accounts:
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Ads API
- Go to "Credentials" → "Create Credentials" → "Service Account"
- Download the service account key file (JSON)
- Grant the service account access to your Google Ads accounts
- Create a Google Ads API Developer token (see below)
Authentication Token Refreshing
The application now includes robust token refresh handling:
- OAuth 2.0 Tokens: The tool will automatically refresh expired OAuth tokens when possible, or prompt for re-authentication if the refresh token is invalid.
- Service Account Tokens: Service account tokens are automatically generated and refreshed as needed without user intervention.
Authentication Method Comparison
Choose OAuth 2.0 Client ID if:
- You're building a desktop application
- Users need to explicitly grant access
- You're managing a single account or a few personal accounts
- You want users to have control over access permissions
Choose Service Account if:
- You're building an automated system
- You need server-to-server authentication
- You're managing multiple accounts programmatically
- You don't want/need user interaction for authentication
- You need automatic token refreshing without user intervention
Getting a Developer Token
- Sign in to your Google Ads account at https://ads.google.com
- Click on Tools & Settings (wrench icon) in the top navigation
- Under "Setup", click "API Center"
- If you haven't already, accept the Terms of Service
- Click "Apply for token"
- Fill out the application form with details about how you plan to use the API
- Submit the application and wait for approval (usually 1-3 business days)
Note: Initially, you'll get a test Developer Token that has some limitations. Once you've tested your implementation, you can apply for a production token that removes these restrictions.
Understanding the Login Customer ID
The GOOGLE_ADS_LOGIN_CUSTOMER_ID is optional and is primarily used when:
- You're working with a Google Ads Manager Account (MCC)
- You need to access multiple client accounts under that manager account
The Login Customer ID should be your Manager Account ID (format: XXX-XXX-XXXX) if:
- You're accessing multiple accounts under a manager account
- You want to use manager account credentials to access client accounts
You can skip this setting if:
- You're only accessing a single Google Ads account
- You're using credentials directly from the account you want to access
To find your Manager Account ID:
- Sign in to your Google Ads Manager Account
- Click on the settings icon (gear)
- Your Manager Account ID will be displayed in the format XXX-XXX-XXXX
- Download the credentials file (a JSON file)
🎬 Watch this beginner-friendly tutorial on Youtube: COMING SOON
2. Install Required Software
You'll need to install these tools on your computer:
- Python (version 3.11 or newer) - This runs the connection between Google Ads and Claude
- Node.js - Required for running the MCP inspector and certain MCP components
- Claude Desktop - The AI assistant you'll chat with
Make sure both Python and Node.js are properly installed and available in your system path before proceeding.
3. Download the Google Ads MCP
You need to download this tool to your computer. The easiest way is:
- Click the green "Code" button at the top of this page
- Select "Download ZIP"
- Unzip the downloaded file to a location you can easily find (like your Documents folder)
Alternatively, if you're familiar with Git:
git clone https://github.com/ixigo/mcp-google-ads.git
4. Install Required Components
Open your computer's Terminal (Mac) or Command Prompt (Windows):
- Navigate to the folder where you unzipped the files:
``bash # Example (replace with your actual path): cd ~/Documents/mcp-google-ads-main ``
- Create a virtual environment (this keeps the project dependencies isolated):
```bash # Using uv (recommended): uv venv .venv
# If uv is not installed, install it first: pip install uv # Then create the virtual environment: uv venv .venv
# OR using standard Python: python -m venv .venv ```
Note: If you get a "pip not found" error when trying to install uv, see the "If you get 'pip not found' error" section below.
- Activate the virtual environment:
```bash # On Mac/Linux: source .venv/bin/activate
# On Windows: .venv\Scripts\activate ```
- Install the required dependencies:
```bash # Using uv: uv pip install -r requirements.txt
# OR using standard pip: pip install -r requirements.txt
# If you encounter any issues with the MCP package, install it separately: pip install mcp ```
If you get "pip not found" error:
```bash # First ensure pip is installed and updated: python3 -m ensurepip --upgrade python3 -m pip install --upgrade pip
# Then try installing the requirements again: python3 -m pip install -r requirements.txt
# Or to install uv: python3 -m pip install uv ```
When you see (.venv) at the beginning of your command prompt, it means the virtual environment is active and the dependencies will be installed there without affecting your system Python installation.
5. Setting Up Environment Configuration
The Google Ads MCP now supports environment file configuration for easier setup.
Using .env File (Recommended)
- Copy the
.env.examplefile to.envin your project directory:
``bash cp .env.example .env ``
- Edit the
.envfile with your actual configuration values:
```bash # Edit the .env file with your favorite text editor # For Mac: nano .env
# For Windows: notepad .env ```
- Set the following values in your
.envfile:
``` # Authentication Type: "oauth" or "serviceaccount" GOOGLEADSAUTHTYPE=oauth
# Path to your credentials file (OAuth client secret or service account key) GOOGLEADSCREDENTIALS_PATH=/path/to/your/credentials.json
# Your Google Ads Developer Token GOOGLEADSDEVELOPERTOKEN=yourdevelopertokenhere
# Optional: Manager Account ID (if applicable) GOOGLEADSLOGINCUSTOMERID=yourmanageraccount_id ```
- Save the file.
The application will automatically load these values from the .env file when it starts.
Using Direct Environment Variables
You can also set environment variables directly in your system or in the configuration files for Claude or Cursor:
For Claude Desktop
{
"mcpServers": {
"googleAdsServer": {
"command": "/FULL/PATH/TO/mcp-google-ads-main/.venv/bin/python",
"args": ["/FULL/PATH/TO/mcp-google-ads-main/google_ads_server.py"],
"env": {
"GOOGLE_ADS_AUTH_TYPE": "oauth",
"GOOGLE_ADS_CREDENTIALS_PATH": "/FULL/PATH/TO/mcp-google-ads-main/credentials.json",
"GOOGLE_ADS_DEVELOPER_TOKEN": "YOUR_DEVELOPER_TOKEN_HERE",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "YOUR_MANAGER_ACCOUNT_ID_HERE"
}
}
}
}
For Cursor
{
"mcpServers": {
"googleAdsServer": {
"command": "/FULL/PATH/TO/mcp-google-ads-main/.venv/bin/python",
"args": ["/FULL/PATH/TO/mcp-google-ads-main/google_ads_server.py"],
"env": {
"GOOGLE_ADS_AUTH_TYPE": "oauth",
"GOOGLE_ADS_CREDENTIALS_PATH": "/FULL/PATH/TO/mcp-google-ads-main/credentials.json",
"GOOGLE_ADS_DEVELOPER_TOKEN": "YOUR_DEVELOPER_TOKEN_HERE",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "YOUR_MANAGER_ACCOUNT_ID_HERE"
}
}
}
}
6. Connect Claude to Google Ads
- Download and install Claude Desktop if you haven't already
- Make sure you have your Google service account credentials file saved somewhere on your computer
- Open your computer's Terminal (Mac) or Command Prompt (Windows) and type:
# For Mac users:
nano ~/Library/Application\ Support/Claude/claude_desktop_config.json
# For Windows users:
notepad %APPDATA%\Claude\claude_desktop_config.json
Add the following text (this tells Claude how to connect to Google Ads):
{
"mcpServers": {
"googleAdsServer": {
"command": "/FULL/PATH/TO/mcp-google-ads-main/.venv/bin/python",
"args": ["/FULL/PATH/TO/mcp-google-ads-main/google_ads_server.py"],
"env": {
"GOOGLE_ADS_CREDENTIALS_PATH": "/FULL/PATH/TO/mcp-google-ads-main/service_account_credentials.json",
"GOOGLE_ADS_DEVELOPER_TOKEN": "YOUR_DEVELOPER_TOKEN_HERE",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "YOUR_MANAGER_ACCOUNT_ID_HERE"
}
}
}
}
Important: Replace all paths and values with the actual information for your account:
- The first path should point to the Python executable inside your virtual environment
- The second path should point to the
google_ads_server.pyfile inside the folder you unzipped - The third path should point to your Google service account credentials JSON file
- Add your Google Ads Developer Token
- Add your Google Ads Manager Account ID (if applicable)
Examples:
- Mac:
- Python path:
/Users/ernesto/Documents/mcp-google-ads/.venv/bin/python - Script path:
/Users/ernesto/Documents/mcp-google-ads/google_ads_server.py - Windows:
- Python path:
C:\\Users\\ernesto\\Documents\\mcp-google-ads\\.venv\\Scripts\\python.exe - Script path:
C:\\Users\\ernesto\\Documents\\mcp-google-ads\\google_ads_server.py
- Save the file:
- Mac: Press Ctrl+O, then Enter, then Ctrl+X to exit
- Windows: Click File > Save, then close Notepad
- Restart Claude Desktop
- When Claude opens, you should now see Google Ads tools available in the tools section
5a. Connect to Cursor (AI Code Editor)
Cur
…
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: cohnen
- Source: cohnen/mcp-google-ads
- License: MIT
- Homepage: https://ixigo.tech
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.