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

webmaster_get_verification

Retrieve the current ownership verification state for a specified host ID to see if a website is already verified, without starting the verification process.

Instructions

Read ownership verification state without starting verification.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
host_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. It explicitly discloses that the operation is read-only and has no side effect of starting verification, which is the key behavioral trait an agent needs. It does not discuss auth or rate limits, but for a simple read operation this is adequate.

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?

A single sentence with no filler. The read-only guarantee is front-loaded and every word 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 tool is simple: one required parameter and an output schema is available. The description plus schema gives an agent enough to call it correctly, though slightly more context about host_id provenance would make it fully complete.

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

Parameters2/5

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

The input schema has a single host_id with no description and schema description coverage is 0%. The tool description does not mention host_id or explain how to obtain/format it, so it fails to compensate for the missing schema documentation.

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 uses a specific verb ('Read') with a concrete resource ('ownership verification state') and explicitly distinguishes the tool from verification-starting operations ('without starting verification'). This makes the tool's purpose immediately identifiable relative to sibling tools.

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 clearly states when to use this tool: when you need to read the ownership verification state. The phrase 'without starting verification' signals it is not for initiating verification, though it does not name a specific alternative tool, so it stops short of a 5.

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