Skip to main content
Glama
zai-one
by zai-one

webmaster_reconcile_action

Retrieve and verify an existing recrawl or sitemap submission for a host by idempotency key, confirming its state without issuing a POST request.

Instructions

Read and reconcile this principal's existing action. This tool cannot send a POST.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
actionYes
host_idYes
idempotency_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does usefully disclose that the tool cannot send a POST, implying a read-only or reconciliation behavior. However, it does not explain what reconciliation does to state, what the output contains beyond the schema, or what happens when the existing action does not match.

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 brief at two sentences and wastes no words. The key read/reconcile purpose is front-loaded, and the POST limitation is stated directly. The main downside is that brevity comes at the cost of semantic clarity.

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

Completeness2/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-value documentation is not strictly needed, but the description leaves significant gaps: all four required parameters are semantically undocumented, the meaning of 'reconcile' is unexplained, and there is no guidance on how this tool fits into the prepare/apply workflow shown by sibling tools.

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

Parameters1/5

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

Schema description coverage is 0%, and the description adds no parameter-level meaning. The role of idempotency_key, the difference between the 'recrawl' and 'sitemap' enum values, and how host_id and url relate to 'this principal's existing action' are all left undocumented.

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

Purpose3/5

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

The description states a verb ('Read and reconcile') and a resource ('this principal's existing action'), but 'reconcile' is jargon that is never defined, and the description does not distinguish this from sibling read-oriented tools like webmaster_get_recrawl_task or webmaster_get_sitemap. It is clear that this is not a POST action, but the core purpose remains somewhat vague.

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?

The only usage guidance is the negative constraint 'This tool cannot send a POST,' which tells the agent what the tool cannot do but not when to use it versus alternatives. It does not mention that preparation tools like webmaster_prepare_recrawl or apply tools like webmaster_apply_recrawl should be used for creating or sending actions.

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