gsc_url_inspection
Inspect a URL's indexing verdict, canonical URL, rich results eligibility, and mobile usability in Google Search Console.
Instructions
Inspect a URL's indexing status in Google Search Console. Returns crawl date, indexing verdict, canonical URL, rich results eligibility, and mobile usability status.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The exact URL to inspect (must be within the site property). | |
| 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)The ToolDefinition type used to type the gscUrlInspection constant.
export interface ToolDefinition<T extends AnyZodObject = AnyZodObject> { name: string; description: string; schema: T; handler: (args: z.infer<T>, config: Config) => Promise<ToolResult>; }