gsc_sitemap_list
Retrieve all sitemaps submitted to Google Search Console for a given site, including their status, URL count, and last submission date.
Instructions
List all sitemaps submitted to Google Search Console for a site, including their status, URL counts, and last submission date.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | No | Site URL in GSC format, e.g. 'sc-domain:example.com'. Uses config default if omitted. |
Implementation Reference
- src/types/tool.ts:12-17 (helper)ToolDefinition interface that defines the shape (name, description, schema, handler) which the gscSitemapList export conforms to.
export interface ToolDefinition<T extends AnyZodObject = AnyZodObject> { name: string; description: string; schema: T; handler: (args: z.infer<T>, config: Config) => Promise<ToolResult>; }