Skip to main content
Glama
rgellis

Google Search Console MCP Server

by rgellis

Inspect Urls

inspect_urls

Checks multiple URLs under a Search Console property and summarizes their index status, so you can audit index coverage in bulk.

Instructions

Inspect several URLs and summarise their index status.

Each URL costs one unit of the 2,000-per-property-per-day URL Inspection quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYesProperty identifier.
language_codeNoBCP-47 code for translated issue messages.en-US
inspection_urlsYesFull URLs to inspect, all under the property.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it usefully discloses a hard operational constraint: one unit per URL against a 2,000-per-property-per-day quota. It says nothing about auth requirements or partial-failure behavior across multiple URLs, which is the main remaining gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, front-loaded with the action and result, then the cost constraint. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values need not be explained, and all parameters are schema-documented. The quota disclosure fills the biggest behavioral gap; only the missing routing guidance versus inspect_url keeps this from being complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three parameters (site_url, language_code, inspection_urls) are already documented in the schema. The description adds no syntax, format, or constraint detail beyond that, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb and resource ('Inspect several URLs') plus the purpose of the result ('summarise their index status'). The plural framing implicitly distinguishes it from the singular sibling inspect_url, but it never names that sibling explicitly, so differentiation relies on inference.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Apart from the quota cost note, there is no guidance on when to choose this over inspect_url or the other sibling tools, and no stated prerequisites or exclusions. The agent must infer that this is the batch counterpart to inspect_url.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.