Skip to main content
Glama
agalliani

mcp-server-bwt

by agalliani

get_active_page_preview_blocks

Retrieve active page preview blocks for a site to inspect and manage their search appearance in Bing Webmaster Tools.

Instructions

Get active page preview blocks for a site.

Args: site_url: The URL of the site

Returns: List[PagePreview]: List of active page preview blocks

Raises: BingWebmasterError: If preview blocks cannot be retrieved

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

A3.8/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 disclosure burden. It explicitly reports the return type (List[PagePreview]) and error behavior (Raises BingWebmasterError). It also indicates read-only behavior by describing a 'get' operation. This is adequate transparency for a simple getter, though it omits details like authentication or rate limits.

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 follows a clear structured format with Args, Returns, and Raises sections. It is concise and the opening sentence front-loads the main purpose. Minimal redundancy, though the parameter explanation is slightly thin.

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?

For a simple one-parameter getter with an output schema present, the description is largely complete. It covers the action, parameter, return type, and error condition. It could benefit from a brief note on what 'active' means or a dependency on site verification, but overall it provides sufficient context for an agent to call it correctly.

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?

Schema description coverage is 0%, so the description must compensate for parameter documentation. However, it only restates the parameter name and adds a generic phrase 'The URL of the site,' which barely adds value over the schema (which already states the property is a required string). No format, validation, or examples are provided, leaving the parameter semantics essentially undocumented.

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 action ('Get'), the resource ('active page preview blocks'), and the scope ('for a site'). It distinguishes from sibling tools like add_page_preview_block and remove_page_preview_block by emphasizing retrieval of active blocks, making the tool's purpose unambiguous.

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

Usage Guidelines3/5

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

The description does not explicitly state when to use this tool versus alternatives like get_deep_link_blocks. While the name and summary imply it is for retrieving active page preview blocks, there is no guidance on exclusions or when not to use it. The usage context is implied rather than spelled out.

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