Skip to main content
Glama
agalliani

mcp-server-bwt

by agalliani

verify_site

Verify website ownership via Bing Webmaster Tools by submitting the site URL, returning true when control is confirmed.

Instructions

Attempt to verify ownership of a site.

Args: site_url: The URL of the site to verify

Returns: bool: True if verification was successful

Raises: BingWebmasterError: If verification fails

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description must carry the full burden of behavioral disclosure. It mentions the return type (bool) and that it raises BingWebmasterError, but does not state whether the operation is read-only, whether it has side effects, or whether it is idempotent. For a verification tool, it should clarify that it does not modify state, which is missing.

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 concise and well-structured with Args, Returns, and Raises sections. The opening sentence is clear and front-loaded. There is no fluff, and each line serves a purpose. A minor deduction for not including usage guidance, but overall it is efficient.

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?

Given the existence of an output schema (bool return) and a single parameter, the description is minimal. It does not mention prerequisites, such as the site needing to be added first, nor does it explain what 'verification' entails in the broader site-management workflow. This leaves gaps for an agent to call it incorrectly.

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 schema coverage is 0%, so the description must compensate. It provides an Args section with a brief explanation for site_url: 'The URL of the site to verify.' This adds a little context beyond the schema's 'Site Url' title, but does not specify format, validation, or examples. It meets a baseline but does not fully enrich the parameter meaning.

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 the tool's purpose: 'Attempt to verify ownership of a site.' This specifies a verb (verify), a resource (ownership of a site), and distinguishes it from sibling tools like add_site or get_sites. The 'Attempt' nuance adds appropriate uncertainty without clouding the core function.

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?

No guidance is given on when to use this tool versus alternatives. It does not mention that verification likely follows adding a site, nor does it contrast with any sibling. The description gives no context about the typical workflow or prerequisites, leaving the agent to infer usage.

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