
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@getmcpads/google-search-console-mcp-server
Advanced tools
Google Search Console MCP server: 20 read tools.
Investigate queries, pages, indexing and sitemaps through a read-only MCP server.
Watch the demo · What's new · Install · Tool reference · Try hosted getmcpads
The film demonstrates hosted getmcpads with staged data. Its creative galleries and MCP Apps interface belong to the hosted product. This repository provides the standalone native API tools.
20 read tools · Read-only by design.
Run locally with your own platform credentials and a client that supports stdio MCP, such as Claude Desktop, Claude Code or Cursor. Your requests go directly to the platform. For managed connections, including supported ChatGPT setups, use the hosted option.
v2.0.0: Native tools and security update · September 20, 2026
Full changelog · Source synchronization details · All releases
Requires Node.js 22.12 or newer. CI covers Node 22 and 24. Version 2.0.0 drops Node 18 and 20 support. Hosted creative integrations and MCP Apps UI are outside this release.
This is a GitHub source release. npm and MCP Registry versions are published separately. The commands below select this exact version; unpinned npx examples later in this document select the version currently available on npm.
git clone --branch v2.0.0 --depth 1 https://github.com/getmcpads-com/google-search-console-mcp-server.git
cd google-search-console-mcp-server
npm ci
npm run build
Configure your MCP client to run node with the absolute path to dist/cli.js and the platform credentials documented below.
Prefer a managed connection? Use Google Search Console with hosted getmcpads. Connect your account, select the data your assistant may access and use the hosted MCP connection. See the site for current features and plans.
| 20 read tools | Search Analytics, sites, sitemaps, URL Inspection, and analyses built on top of them |
| SEO analyses, not just an API wrapper | Cannibalisation detection, query clustering, wins and losses between periods, indexation watchlists, large-site sampling plans |
| 7 resources | Live catalogues the model can read: metrics, dimensions, filters, compatibility rules, 8 workflow recipes, read-only playbooks |
| Quota guardrails | Every URL Inspection call is capped at 10 URLs, so one exploratory question cannot burn a day of quota |
| No writes at all | Not a flag, a property of the code. See below |
Search Console answers questions about rows. Most real questions are about change: which queries did we lose, which pages compete for the same term, is indexing drifting.
These tools do that work rather than leaving it to the model:
| Tool | Question it answers |
|---|---|
gsc_detect_cannibalization | Which pages compete for the same query |
gsc_find_losses_gains | What we won and lost between two periods |
gsc_cluster_queries | Which queries belong to the same intent |
gsc_compare_search_types | How web, image, video and news differ |
gsc_analyze_search_appearance_trends | How rich results evolve |
gsc_indexation_watchlist | Which URLs changed indexing verdict |
gsc_plan_large_site_sampling | Which URLs to inspect, when you cannot inspect them all |
Search Console returns a top N, not a site total.
When you query with a dimension such as query or page, the API returns the highest
ranked rows up to your row limit, ordered by clicks. Summing the clicks of those rows does
not give you the site total: the long tail is missing, and on a large site it can be most
of the traffic.
To get a real total, query without dimensions. To compare periods, compare like with like: same dimensions, same row limit, same search type.
gsc_query_search_analytics reports what it actually returned, and gsc_validate_query
checks a combination before it runs. But the arithmetic mistake is yours to avoid, and it is
the most common one in Search Console analysis.
Two other limits worth carrying in your head:
gsc_get_data_freshness tells you what is final.There are no write tools, and no environment variable that adds any. The Search Console API can submit and delete sitemaps, add and remove properties, and request indexing. This server exposes none of that.
The scope it asks for reflects that: webmasters.readonly, not webmasters. Even if the
model tried, the token cannot write.
Our ad platform servers, where writes make sense, do have them, guarded by a mandatory preview: Meta Ads · Google Ads · TikTok Ads
The hosted version at getmcpads.com keeps the same rule: Search Console stays read-only there too.
Three values, obtained once.
In a Google Cloud project, enable the Google Search Console API, then create an OAuth client under APIs & Services → Credentials. Choose Desktop app for local use. Note the client ID and client secret.
Run the OAuth consent flow once, signed in as a Google account that owns or can read your
properties, and keep the refresh token. Request webmasters.readonly and nothing more.
📖 Google OAuth for installed apps
The refresh token does not expire. Use an OAuth client dedicated to this server so you can revoke it on its own.
For a quick trial you can set GSC_ACCESS_TOKEN to a short-lived token instead, but it
expires within the hour and is useless for daily work.
If setting up an OAuth client is more than you want to do for one property, getmcpads.com handles the consent flow for you and gives you the same tools behind a hosted endpoint.
Set GSC_SITE_URL to avoid passing it on every call. Both property forms work:
| Property type | Value |
|---|---|
| URL-prefix | https://example.com/ (the trailing slash matters) |
| Domain | sc-domain:example.com |
List what you can reach with gsc_list_sites, and run gsc_health_check as your first
call. It verifies the credentials without printing any secret.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"search-console": {
"command": "npx",
"args": ["-y", "@getmcpads/google-search-console-mcp-server"],
"env": {
"GSC_CLIENT_ID": "your-client-id",
"GSC_CLIENT_SECRET": "your-client-secret",
"GSC_REFRESH_TOKEN": "your-refresh-token"
}
}
}
}
Restart Claude Desktop. Ask it: "which queries did we lose last month?".
claude mcp add search-console --env GSC_CLIENT_ID=... --env GSC_CLIENT_SECRET=... --env GSC_REFRESH_TOKEN=... -- npx -y @getmcpads/google-search-console-mcp-server
.cursor/mcp.json in your project, same shape as the Claude Desktop config above.
git clone https://github.com/getmcpads-com/google-search-console-mcp-server.git
cd google-search-console-mcp-server
npm install && npm run build
cp .env.example .env # then fill in your credentials
npm start
| Variable | Default | Meaning |
|---|---|---|
GSC_CLIENT_ID | none | OAuth client ID |
GSC_CLIENT_SECRET | none | OAuth client secret |
GSC_REFRESH_TOKEN | none | From the consent flow |
GSC_ACCESS_TOKEN | none | Alternative to the three above, expires within the hour |
GSC_SITE_URL | none | Optional default property |
LOG_LEVEL | info | debug, info, warn, error |
Either the three OAuth values, or GSC_ACCESS_TOKEN. The server refuses to start with neither.
npm run doctor
Every tool is listed below. See server-card.json for complete parameter and output schemas.
| Tool | Purpose |
|---|---|
gsc_list_sites | List all Google Search Console properties accessible with the current credentials. |
gsc_get_site | Get one Search Console property and its exact permission level (read-only sites.get). |
gsc_health_check | Verify Google Search Console read-only authentication, visible properties, configured default site, and permission levels without exposing tokens. |
gsc_query_search_analytics | Query Google Search Console Search Analytics. |
gsc_inspect_url | Inspect a URL for Google indexing status, crawl info, mobile usability, AMP, and rich results. |
gsc_bulk_inspect_urls | Inspect multiple URLs with a conservative sequential limit and normalized URL Inspection results. |
gsc_list_sitemaps | List sitemaps submitted for a Search Console property, including processing status and submitted/indexed counts. |
gsc_get_sitemap | Get one submitted sitemap by full feed path, including type, fetch state, warnings/errors, and submitted/indexed content totals. |
gsc_get_sitemap_health | Return an enriched read-only sitemap health summary with status totals, submitted/indexed content counts, warnings, and errors. |
gsc_compare_search_types | Compare performance across Search Console search types: web, image, video, news, discover, and Google News. |
gsc_get_data_freshness | Detect the most recent date with Search Analytics data by querying recent daily rows. |
gsc_monitor_indexation_freshness | Read-only monitoring snapshot for Search Analytics freshness, sitemap indexation totals, and an optional small URL Inspection sample. |
gsc_track_sitemap_deltas | Read-only sitemap delta tracker. |
gsc_analyze_search_appearance_trends | Analyze structured data and rich-result trend signals via the Search Analytics searchAppearance dimension when GSC exposes it. |
gsc_plan_large_site_sampling | Build a read-only URL Inspection sampling plan for large sites from sitemap risk signals and Search Analytics page performance. |
gsc_indexation_watchlist | Read-only URL Inspection watchlist for critical URLs. |
gsc_find_losses_gains | Compare two periods for query or page performance and return click/impression/CTR/position deltas. |
gsc_cluster_queries | Cluster Search Console queries by simple tokens and intent signals: brand/non-brand, question, category, and topic tokens. |
gsc_detect_cannibalization | Detect queries where multiple pages compete for clicks/impressions in Search Analytics query-page rows. |
gsc_validate_query | Validate a Search Console metric/dimension/search type combination before executing it. |
| URI | Contents |
|---|---|
gsc://manifest | What this server exposes, and which tool to run first |
gsc://metrics | The 8 Search Analytics metrics, raw and derived |
gsc://dimensions | The 7 dimensions and where they are valid |
gsc://filters | The 5 filter operators and their accepted values |
gsc://compatibility | Which dimensions work with which search types and data states |
gsc://recipes | 8 step-by-step workflows |
gsc://p2-readonly-playbooks | Monitoring playbooks and their invariants |
searchconsole.googleapis.com and
www.googleapis.com for the API, oauth2.googleapis.com and accounts.google.com for
OAuth. A test fails the build if a fifth host appears in the source.redirect: "error", so a redirect
cannot forward a bearer token or client secret to another host. A test fails the build if
any fetch omits this.webmasters.readonly. The token itself cannot write.Full policy: SECURITY.md.
Try hosted Search Console if you want to use this source without operating a local server. getmcpads also connects advertising, Search Console and GA4 through one MCP URL. Source availability and plan limits are listed on the site; connecting an account is still required.
See the current hosted tool catalogue and pricing before choosing a paid plan. This Apache 2.0 adapter remains independently useful with your own credentials.
Issues and pull requests are welcome. See CONTRIBUTING.md. Please read SECURITY.md before reporting anything security-related.
Apache License 2.0. See also NOTICE.
Google and Google Search Console are trademarks of Google LLC. This project is not affiliated with, endorsed by, or sponsored by Google LLC. It is an independent client of a public API.
Every tool declares read/write annotations, parameter descriptions and a structured output schema. Successful calls expose the payload as structuredContent.result; errors retain isError: true. The generated server card contains definitions only.
Run npm run bundle -- /path/to/output to build a .mcpb desktop bundle from the current catalog. Credentials are entered locally during installation. This server remains read-only.
Meta Ads · Google Ads · Google Analytics 4 · TikTok Ads · Pinterest Ads · X Ads
Maintained by Emmanuel at getmcpads. Questions: hello@getmcpads.com.
FAQs
Google Search Console MCP server: 20 read tools.
The npm package @getmcpads/google-search-console-mcp-server receives a total of 44 weekly downloads. As such, @getmcpads/google-search-console-mcp-server popularity was classified as not popular.
We found that @getmcpads/google-search-console-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.