Google Search Console MCP Server

index_inspect

Inspect a URL to see if it is indexed or can be indexed

Input Schema

NameRequiredDescriptionDefault
inspectionUrlYesThe fully-qualified URL to inspect. Must be under the property specified in "siteUrl"
languageCodeNoAn IETF BCP-47 language code representing the language of the requested translated issue messages, such as "en-US" or "de-CH". Default is "en-US"en-US
siteUrlYesThe site URL as defined in Search Console. Example: sc-domain:example.com (for domain resources) or http://www.example.com/ (for site prefix resources)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "inspectionUrl": { "description": "The fully-qualified URL to inspect. Must be under the property specified in \"siteUrl\"", "type": "string" }, "languageCode": { "default": "en-US", "description": "An IETF BCP-47 language code representing the language of the requested translated issue messages, such as \"en-US\" or \"de-CH\". Default is \"en-US\"", "type": "string" }, "siteUrl": { "description": "The site URL as defined in Search Console. Example: sc-domain:example.com (for domain resources) or http://www.example.com/ (for site prefix resources)", "type": "string" } }, "required": [ "siteUrl", "inspectionUrl" ], "type": "object" }