npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@isteam/google-ads-mcp

v1.0.1

Published

MCP server for Google Ads — manage campaigns, keywords, ads, budgets, and reporting via AI agents

Readme

@isteam/google-ads-mcp

npm version License: MIT

MCP server for Google Ads — manage campaigns, keywords, ads, budgets, and reporting via AI agents.

Built by is.team — the AI-native project management platform.

Quick Start

Add to your MCP config (.mcp.json for Claude Code, or Claude Desktop settings):

{
  "mcpServers": {
    "google-ads": {
      "command": "npx",
      "args": ["-y", "@isteam/google-ads-mcp"],
      "env": {
        "GOOGLE_ADS_CLIENT_ID": "your-client-id",
        "GOOGLE_ADS_CLIENT_SECRET": "your-client-secret",
        "GOOGLE_ADS_DEVELOPER_TOKEN": "your-developer-token",
        "GOOGLE_ADS_REFRESH_TOKEN": "your-refresh-token",
        "GOOGLE_ADS_CUSTOMER_ID": "123-456-7890"
      }
    }
  }
}

Tools (27)

Campaigns

| Tool | Description | |------|-------------| | list_campaigns | List campaigns with performance metrics and status filtering | | create_campaign | Create a new campaign with budget and bidding strategy | | update_campaign | Update campaign name, status, or network settings | | pause_campaign | Pause a running campaign | | remove_campaign | Permanently remove a campaign |

Ad Groups

| Tool | Description | |------|-------------| | list_ad_groups | List ad groups with metrics, filtered by campaign or status | | create_ad_group | Create a new ad group with optional CPC bid | | update_ad_group | Update ad group name, bid, or status |

Keywords

| Tool | Description | |------|-------------| | list_keywords | List keywords with quality scores and performance metrics | | add_keywords | Bulk add keywords with match type selection | | remove_keyword | Remove a keyword from an ad group | | keyword_ideas | Get keyword suggestions from Google Keyword Planner |

Ads

| Tool | Description | |------|-------------| | list_ads | List ads with performance metrics | | create_search_ad | Create responsive search ads (3-15 headlines, 2-4 descriptions) | | update_ad_status | Enable or pause an ad |

Budgets

| Tool | Description | |------|-------------| | list_budgets | List all campaign budgets | | update_budget | Update a campaign's daily budget |

Reports

| Tool | Description | |------|-------------| | campaign_report | Campaign performance report with date breakdown | | ad_group_report | Ad group performance by date | | keyword_report | Keyword-level performance analysis | | search_terms_report | Search query insights for negative keyword discovery | | custom_query | Execute raw GAQL queries |

Conversions

| Tool | Description | |------|-------------| | list_conversions | List conversion tracking actions | | create_conversion_action | Create a new conversion event (signup, purchase, etc.) |

Audiences

| Tool | Description | |------|-------------| | list_audiences | List remarketing user lists | | create_audience | Create website visitor audiences with URL pattern rules | | target_audience | Apply audience targeting to campaigns |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | GOOGLE_ADS_CLIENT_ID | Yes | OAuth 2.0 client ID | | GOOGLE_ADS_CLIENT_SECRET | Yes | OAuth 2.0 client secret | | GOOGLE_ADS_DEVELOPER_TOKEN | Yes | Google Ads API developer token | | GOOGLE_ADS_REFRESH_TOKEN | Yes | OAuth 2.0 refresh token | | GOOGLE_ADS_CUSTOMER_ID | Yes | Google Ads customer ID (e.g. 123-456-7890) | | GOOGLE_ADS_LOGIN_CUSTOMER_ID | No | Manager account ID (for MCC access) |

Getting your credentials

  1. Create a project in Google Cloud Console
  2. Enable the Google Ads API
  3. Create OAuth 2.0 credentials (client ID + secret)
  4. Apply for a developer token in your Google Ads account
  5. Generate a refresh token using the OAuth 2.0 flow

Rate Limits & Agent Safety

Google Ads API enforces quotas at multiple levels:

| Scope | Limit | Notes | |-------|-------|-------| | Requests per minute | 600 / min per customer | Cumulative across all methods | | Concurrent mutations | ~30 | Campaign/ad group/keyword writes | | Concurrent reports | 5 per customer ID | GAQL queries | | Daily operations | 10,000–100,000+ | Depends on account tier and history |

Retry behavior: The underlying google-ads-api library includes built-in exponential backoff for 429 and 5xx errors. No additional retry configuration needed.

Idempotency note: Most mutation operations (create campaign, add keywords) are not idempotent — retrying a create may produce duplicates. Use list_campaigns or list_keywords to verify before retrying. Google Ads API supports idempotency keys via request headers for advanced use cases.

Backoff: On 429 Too Many Requests, the library automatically retries with exponential delay (2^n seconds).

Usage Examples

Check campaign performance:

"Show me all active campaigns with their spend and conversions for the last 7 days"

Create a new campaign:

"Create a search campaign called 'Spring Sale 2025' with a $50/day budget targeting the Search network"

Keyword research:

"Get keyword ideas related to 'project management software' and show search volume"

About is.team

is.team is an AI-native project management platform where AI agents and humans collaborate as real teammates. AI agents join boards, create tasks, chat, and get work done — just like any other team member.

Part of the is.team open-source MCP ecosystem:

License

MIT