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

@bossforce.ai/mcp-google-ads

v0.1.0

Published

MCP server for the **Google Ads API** (REST, `v24`). Read Google Ads data with GAQL (Google Ads Query Language): discover accessible accounts, list campaigns and run arbitrary read queries for reporting and performance analysis.

Readme

@bossforce.ai/mcp-google-ads

MCP server for the Google Ads API (REST, v24). Read Google Ads data with GAQL (Google Ads Query Language): discover accessible accounts, list campaigns and run arbitrary read queries for reporting and performance analysis.

Gated. This integration only works once you have an approved Google Ads API developer token. A token is requested in the API Center of a Google Ads manager (MCC) account and must be reviewed and approved by Google. Until then a token can only call test accounts.

Credentials

| Env | Secret | How to obtain | | ------------------------------ | ------ | ----------------------------------------------------------------------------------------------------------- | | GOOGLE_ADS_CLIENT_ID | yes | OAuth2 client id (Google Cloud Console). Provided by the platform as client_id. | | GOOGLE_ADS_CLIENT_SECRET | yes | OAuth2 client secret. Provided by the platform as client_secret. | | GOOGLE_ADS_REFRESH_TOKEN | yes | Obtained automatically when you authorize Google access (scope https://www.googleapis.com/auth/adwords). | | GOOGLE_ADS_DEVELOPER_TOKEN | yes | Your approved developer token from the API Center of a Google Ads manager account. | | GOOGLE_ADS_LOGIN_CUSTOMER_ID | no | The manager (MCC) account customer id, digits only with no dashes — sent as the login-customer-id header. |

Credentials are read lazily, so the server boots and answers tools/list without them; calls fail with an auth error until they are set.

Auth

The server exchanges the refresh token for a short-lived access token at https://oauth2.googleapis.com/token (grant_type=refresh_token) and caches it, re-fetching once on a 401. Every API call carries three headers the API requires: authorization: Bearer <token>, developer-token and login-customer-id (the manager id with dashes stripped).

Tools

| Tool | Arguments | Returns | | --------------------------- | ------------------------------------- | ------------------------------------------------ | | search | customer_id, query, page_token? | GAQL results array (and nextPageToken) | | list_campaigns | customer_id, page_token? | campaigns with id, name, status, channel, budget | | list_accessible_customers | — | resourceNames of accessible customer accounts |

search runs any GAQL statement against POST /customers/{customerId}/googleAds:search. customer_id is digits only (dashes are stripped automatically). Use list_accessible_customers to discover the ids to pass.

Develop

pnpm --filter @bossforce.ai/mcp-google-ads build
pnpm --filter @bossforce.ai/mcp-google-ads test

Regenerate the tools/list snapshot after an intentional signature change:

UPDATE_SNAPSHOTS=1 pnpm --filter @bossforce.ai/mcp-google-ads test