Google Search Console MCP Server

submit_sitemap

Submit a sitemap for a site in Google Search Console

Input Schema

NameRequiredDescriptionDefault
feedpathYesThe URL of the sitemap to add. For example: http://www.example.com/sitemap.xml
siteUrlYesThe site's URL, including protocol. For example: http://www.example.com/

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "feedpath": { "description": "The URL of the sitemap to add. For example: http://www.example.com/sitemap.xml", "type": "string" }, "siteUrl": { "description": "The site's URL, including protocol. For example: http://www.example.com/", "type": "string" } }, "required": [ "feedpath", "siteUrl" ], "type": "object" }