google-search-console-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Log level: debug, info, warn, error | info |
| GSC_SITE_URL | No | Optional default property, e.g. https://example.com/ or sc-domain:example.com | |
| GSC_CLIENT_ID | No | OAuth client ID | |
| GSC_ACCESS_TOKEN | No | Alternative short-lived access token; expires within the hour | |
| GSC_CLIENT_SECRET | No | OAuth client secret | |
| GSC_REFRESH_TOKEN | No | Refresh token obtained from the OAuth consent flow |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {
"subscribe": false,
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| gsc_list_sitesA | List all Google Search Console properties accessible with the current credentials. |
| gsc_get_siteA | Get one Search Console property and its exact permission level (read-only sites.get). |
| gsc_health_checkA | Verify Google Search Console read-only authentication, visible properties, configured default site, and permission levels without exposing tokens. |
| gsc_query_search_analyticsB | Query Google Search Console Search Analytics. Returns clicks, impressions, CTR, and average position for queries, pages, countries, devices, dates, and search appearances. Use gsc://metrics, gsc://dimensions, gsc://filters, and gsc://compatibility for available fields and rules. |
| gsc_inspect_urlB | Inspect a URL for Google indexing status, crawl info, mobile usability, AMP, and rich results. Quota: 2000 requests/day/property. |
| gsc_bulk_inspect_urlsA | Inspect multiple URLs with a conservative sequential limit and normalized URL Inspection results. Quota: 2000 requests/day/property. |
| gsc_list_sitemapsA | List sitemaps submitted for a Search Console property, including processing status and submitted/indexed counts. |
| gsc_get_sitemapA | Get one submitted sitemap by full feed path, including type, fetch state, warnings/errors, and submitted/indexed content totals. |
| gsc_get_sitemap_healthB | Return an enriched read-only sitemap health summary with status totals, submitted/indexed content counts, warnings, and errors. |
| gsc_compare_search_typesC | Compare performance across Search Console search types: web, image, video, news, discover, and Google News. |
| gsc_get_data_freshnessB | Detect the most recent date with Search Analytics data by querying recent daily rows. |
| gsc_monitor_indexation_freshnessA | Read-only monitoring snapshot for Search Analytics freshness, sitemap indexation totals, and an optional small URL Inspection sample. |
| gsc_track_sitemap_deltasA | Read-only sitemap delta tracker. Fetches the current sitemap snapshot and compares it to an agent-provided baseline; no state is written. |
| gsc_analyze_search_appearance_trendsB | Analyze structured data and rich-result trend signals via the Search Analytics searchAppearance dimension when GSC exposes it. |
| gsc_plan_large_site_samplingB | Build a read-only URL Inspection sampling plan for large sites from sitemap risk signals and Search Analytics page performance. |
| gsc_indexation_watchlistB | Read-only URL Inspection watchlist for critical URLs. Inspects up to 10 URLs and returns alert/review/ok assessments without storing state. |
| gsc_find_losses_gainsA | Compare two periods for query or page performance and return click/impression/CTR/position deltas. |
| gsc_cluster_queriesB | Cluster Search Console queries by simple tokens and intent signals: brand/non-brand, question, category, and topic tokens. |
| gsc_detect_cannibalizationC | Detect queries where multiple pages compete for clicks/impressions in Search Analytics query-page rows. |
| gsc_validate_queryC | Validate a Search Console metric/dimension/search type combination before executing it. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| gsc-manifest | |
| gsc-recipes | |
| gsc-metrics | |
| gsc-dimensions | |
| gsc-filters | |
| gsc-compatibility | |
| gsc-p2-readonly-playbooks |
TDQS
Scored across 20 tools
Several tools cluster around the same underlying resources with fuzzy boundaries, such as gsc_get_sitemap, gsc_get_sitemap_health, and gsc_list_sitemaps, or gsc_monitor_indexation_freshness and gsc_get_data_freshness. Search Analytics is also fragmented across gsc_query_search_analytics, gsc_compare_search_types, gsc_find_losses_gains, gsc_cluster_queries, and gsc_detect_cannibalization, making tool selection ambiguous.
All tools consistently use a gsc_ prefix with snake_case verb_noun names, which is a clear and predictable pattern. Minor deviations exist in verb choices—monitor, detect, track, plan, and cluster feel less uniform than simple list/get/query verbs—but the overall convention is consistent.
20 tools is on the heavy side for a Google Search Console read-only server, especially since many are specialized wrappers around Search Analytics and URL Inspection that could be consolidated. The count is not unreasonable for the domain, but it feels somewhat over-fragmented.
The server covers the main read-only Google Search Console surfaces: properties, sitemaps, Search Analytics, and URL Inspection, with no obvious dead ends. It lacks write operations like submitting or removing sitemaps, but the tool set appears intentionally read-only, so this is a minor gap rather than a critical one.