Skip to main content
Glama
AKzar1el

Google Search Console MCP

Request Indexing

indexing.request

Request indexing for URLs with JobPosting structured data or livestream BroadcastEvent via Google's Indexing API, limited to owner-verified Search Console properties.

Instructions

Requests indexing through Google's Indexing API for a URL within an owner-level Search Console property accessible to the connected Google account. Google currently restricts this API to pages containing JobPosting structured data or livestream pages containing BroadcastEvent inside VideoObject. It is not available for general webpage submission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe fully qualified HTTP/HTTPS URL to submit. It must fall within site_url and contain JobPosting structured data, or be a livestream page with BroadcastEvent inside VideoObject.
site_urlYesThe Search Console property identifier, exactly as returned by sites.list. Two formats exist: domain properties use 'sc-domain:example.com'; URL-prefix properties use the full URL including protocol and trailing slash, e.g. 'https://www.example.com/'. Passing the wrong format returns a permission error even when the user owns the site — call sites.list first if unsure. The connected Google account must be an owner of this property.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already convey read/write, idempotency, and destructive hints. The description adds meaningful behavioral context beyond annotations: Google's API restriction, the owner-level permission requirement, and the fact that submission is a request rather than a guaranteed immediate index. This is valuable transparency for an agent deciding whether the call will succeed.

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?

The description is two sentences with no filler. The primary action is front-loaded, followed immediately by the critical eligibility restriction. Every sentence earns its place.

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?

The description is largely complete for this tool's complexity: it covers purpose, eligibility, auth ownership requirement, and the non-general nature of the API. The output schema exists, so return values need no explanation. A minor gap is the lack of an explicit pointer to sitemaps.submit for general pages, but this does not prevent correct invocation.

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?

The input schema covers 100% of parameters and already provides rich descriptions for both 'url' and 'site_url', including format examples and permission failure modes. The tool description adds no additional parameter-level detail, so the baseline score of 3 applies.

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

Purpose5/5

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

The description clearly states a specific action ('Requests indexing through Google's Indexing API'), the resource ('a URL within an owner-level Search Console property'), and the critical scope restriction (only JobPosting or livestream BroadcastEvent pages). This distinguishes it from siblings like indexing.list_pages, urls.inspect, and sitemaps.submit.

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

Usage Guidelines4/5

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

It provides an explicit when-not-to-use: 'It is not available for general webpage submission.' It also gives the eligibility criteria for valid submissions. However, it does not explicitly name an alternative tool for general webpage submission, such as sitemaps.submit, which would make the guidance fully complete.

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