Skip to main content
Glama
Mrshahidali420

Google Search Console MCP Server

gsc_quota

View per-property Search Console quota: Request-Indexing slots and URL Inspection limits. Reads from local store, needs no API call or auth, and identifies the exhausted budget.

Instructions

Report Request-Indexing and URL Inspection budget for every property the store currently knows about.

Local-only: reads the store and the config file, makes no Search Console API call, and needs no OAuth token — safe to call at any time, including before signing in. An empty store (nothing synced yet via gsc_list_sites or gsc_check_status) returns [].

One entry per property: {"property", "submission", "inspection", "binding"}.

"submission" is the Request-Indexing slot budget: {"free", "spendable_free", "used", "slots", "daily_reserve", "next_free_at"}. free is the RAW free-slot count and ignores daily_reserve. spendable_free is computed against the RESERVE-ADJUSTED ceiling — max(0, (slots - daily_reserve) - used) — NOT simply free minus daily_reserve: that arithmetic breaks at the clamp (slots=11, daily_reserve=2, used=10 gives free=1, but spendable_free is 0, not -1). ACT ON spendable_free, NOT free: daily_reserve exists to hold slots back from every tool, and a caller that submits up to free instead will be refused once spendable_free runs out. next_free_at is an ISO-8601 string, or None when a slot is free right now — it is already computed against the reserve-adjusted ceiling too, so it can report a wait even while free (the raw count) is nonzero.

"inspection" is the URL Inspection API budget: {"daily_free", "minute_free", "daily_limit", "minute_limit"} (2000/day, 600/minute, per property — the same quota gsc_check_status spends).

"binding" names whichever budget is exhausted for that property right now — "submission" (the Request-Indexing ceiling, reserve applied), "inspection_daily", or "inspection_minute" — or None when every budget has headroom.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior5/5

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

With no annotations provided, the description carries the full burden—and it excels. It discloses that the tool is read-only and local, explains the exact computation of spendable_free with a worked example, clarifies the semantics of next_free_at, and defines the 'binding' field. The description even warns about acting on spendable_free rather than free, a critical behavioral nuance that prevents misuse.

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

Conciseness4/5

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

The description is long but front-loaded with the core purpose. It uses clear headers for each budget type and flows logically from general to specific details. Every sentence carries essential information (e.g., the free vs. spendable_free distinction, the clamp arithmetic, the inspection limits). It is not excessively verbose for the complexity it covers, though it could be tightened slightly.

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

Completeness5/5

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

For a tool with zero parameters, no annotations, and a rich output schema, the description fully covers all contextual aspects: data source, safety profile, empty-store behavior, exact field semantics, edge cases, and the meaning of 'binding'. The return values are exhaustively documented, making the output schema redundant. This is a complete description.

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

Parameters4/5

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

The input schema has zero parameters, so the baseline is 4. The description adds no parameter syntax (none needed) but instead thoroughly explains the returned data structure, which is the semantic content the agent needs. This is appropriate given the empty schema.

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 first sentence clearly states the tool's purpose: 'Report Request-Indexing and URL Inspection budget for every property the store currently knows about.' The verb 'Report' plus the specific resources (Request-Indexing and URL Inspection budget) distinguishes it from sibling tools like gsc_check_status, which spends these budgets, and gsc_performance, which deals with analytics data.

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?

The description provides strong usage context: it is local-only, makes no API call, requires no OAuth, and is safe to call at any time, including before signing in. It also explains the empty-store case. However, it does not explicitly state when NOT to use this tool (e.g., 'if you need live quota data from Search Console, use gsc_check_status instead'), though the comparison to gsc_check_status implies this.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mrshahidali420/google-search-console-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server