Google Ads Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Google Ads Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for Google Ads campaign reporting and management via Claude.
ads.google.com/aw/apicenter)# Set your credentials first
export GOOGLE_ADS_CLIENT_ID=your_client_id
export GOOGLE_ADS_CLIENT_SECRET=your_client_secret
# Run the auth setup
npm run authThis opens a browser for Google sign-in. After authorizing, you'll get a refresh token.
Your Google Ads Customer ID is the 10-digit number shown in the top-right of the Google Ads UI (e.g., 123-456-7890). Enter it without dashes: 1234567890.
Add to your Claude Code settings (~/.claude/settings.local.json or project-level):
{
"mcpServers": {
"google-ads": {
"command": "node",
"args": ["/path/to/google-ads-mcp/dist/index.js"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your_developer_token",
"GOOGLE_ADS_CLIENT_ID": "your_client_id",
"GOOGLE_ADS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_ADS_REFRESH_TOKEN": "your_refresh_token",
"GOOGLE_ADS_CUSTOMER_ID": "1234567890"
}
}
}
}If your refresh token is from a Manager Account that manages the target account, add:
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "your_manager_account_id"npm install
npm run build| Variable | Required | Description |
|---|---|---|
GOOGLE_ADS_DEVELOPER_TOKEN | Yes | From Google Ads API Center |
GOOGLE_ADS_CLIENT_ID | Yes | OAuth2 client ID |
GOOGLE_ADS_CLIENT_SECRET | Yes | OAuth2 client secret |
GOOGLE_ADS_REFRESH_TOKEN | Yes | From npm run auth |
GOOGLE_ADS_CUSTOMER_ID | Yes | 10-digit account ID (no dashes) |
GOOGLE_ADS_LOGIN_CUSTOMER_ID | No | Required if using Manager Account |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.