Google Search Console MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GSC_WRITE_ACCESS | No | Set to 'true' to enable sitemap submit/delete tools. Defaults to 'false'. | false |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| gsc_list_sitesA | List all verified properties in Google Search Console. Returns a list of sites/properties you have access to, including their permission level and site URL format. Returns: str: JSON with list of verified sites, each containing: - siteUrl (str): The site URL - permissionLevel (str): Your access level (siteOwner, siteFullUser, etc.) |
| gsc_search_analyticsA | Query search performance data (clicks, impressions, CTR, position). Returns search analytics data for a verified property, with optional grouping by dimensions (query, page, country, device, date) and filtering. Args: params (SearchAnalyticsInput): Query parameters including: - site_url (str): The GSC property URL - start_date (str): Start date YYYY-MM-DD - end_date (str, optional): End date YYYY-MM-DD, defaults to today - dimensions (list[str], optional): Group by query/page/country/device/date - row_limit (int, optional): Max rows 1-25000, default 100 - start_row (int, optional): Pagination offset - search_type (str, optional): web/image/video/news/discover - dimension_filters (list[dict], optional): Filters for dimensions Returns: str: JSON with rows containing clicks, impressions, ctr, position, and dimension keys. Includes metadata with total row count. |
| gsc_inspect_urlA | Inspect a URL's indexation status, crawl info, and rich results. Uses the URL Inspection API to check whether a URL is indexed, its canonical URL, crawl status, mobile usability, and rich results. Args: params (InspectUrlInput): Parameters including: - inspection_url (str): The fully qualified URL to inspect - site_url (str): The GSC property URL Returns: str: JSON with inspection results including: - indexStatusResult: verdict, coverageState, crawledAs, lastCrawlTime, pageFetchState - mobileUsabilityResult: verdict, issues - richResultsResult: detectedItems |
| gsc_list_sitemapsA | List all submitted sitemaps for a verified property. Args: params (SiteInput): Parameters including: - site_url (str): The GSC property URL Returns: str: JSON with list of sitemaps, each containing: - path (str): Sitemap URL - lastSubmitted (str): Last submission timestamp - isPending (bool): Whether sitemap is pending processing - isSitemapsIndex (bool): Whether it's a sitemap index - type (str): Sitemap type - lastDownloaded (str): Last download timestamp - warnings (int): Number of warnings - errors (int): Number of errors |
| gsc_get_sitemapA | Get details for a specific submitted sitemap. Args: params (SitemapInput): Parameters including: - site_url (str): The GSC property URL - feedpath (str): Full URL of the sitemap Returns: str: JSON with sitemap details including path, status, content counts, warnings, and errors. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct GSC resource: sites, analytics, URL inspection, and sitemaps (list vs. specific). No functional overlap exists, making tool selection unambiguous.
All tools follow the gsc_verb_noun pattern in snake_case, with clear verbs like list, search, inspect, and get. The naming is uniform and predictable.
Five tools cover the core read-only capabilities of Google Search Console without unnecessary bloat. The scope is well-defined and each tool has a clear purpose.
The set covers site listing, search analytics, URL inspection, and sitemap details. Minor gaps include no sitemap submission or site management, but these are not critical for typical monitoring and analysis workflows.