Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_fetched_url_details

Retrieve detailed information about a specific URL that has been fetched by Bing Webmaster Tools, including crawl status and indexing data.

Instructions

Get detailed information about a fetched URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • Handler function for the 'get_fetched_url_details' tool, decorated with @mcp.tool for registration. Fetches detailed information about a fetched URL using the Bing Webmaster API.
    @mcp.tool(
        name="get_fetched_url_details",
        description="Get detailed information about a fetched URL.",
    )
    async def get_fetched_url_details(
        site_url: Annotated[str, "The URL of the site"],
        url: Annotated[str, "The fetched URL to get details for"],
    ) -> Dict[str, Any]:
        """
        Get detailed information about a fetched URL.
    
        Args:
            site_url: The URL of the site
            url: The fetched URL to get details for
    
        Returns:
            Detailed information about the fetched URL
        """
        async with api:
            details = await api._make_request(
                f"GetFetchedUrlDetails?siteUrl={site_url}&url={url}"
            )
            return api._ensure_type_field(details, "FetchedUrlDetails")
  • Registration of the 'get_fetched_url_details' tool via @mcp.tool decorator.
    @mcp.tool(
        name="get_fetched_url_details",
        description="Get detailed information about a fetched URL.",
    )
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it 'gets' information, implying a read-only operation, but doesn't specify permissions, rate limits, data freshness, or what 'detailed information' entails beyond what the output schema might cover.

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?

The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple tool and front-loaded with the core purpose.

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

Completeness3/5

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

Given the tool has an output schema (which should cover return values) and no annotations, the description is minimally adequate but incomplete. It lacks parameter explanations and behavioral context, though the output schema mitigates some gaps for return values.

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 undocumented parameters. It mentions 'a fetched URL' but doesn't explain the two required parameters ('site_url' and 'url'), their relationship, or what they represent (e.g., base site vs. specific URL). This leaves significant gaps.

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

Purpose4/5

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

The description clearly states the verb 'Get' and resource 'detailed information about a fetched URL', making the purpose understandable. It distinguishes from siblings like 'get_fetched_urls' (plural) by focusing on details for a specific URL, though it doesn't explicitly mention this distinction.

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 provided on when to use this tool versus alternatives like 'get_url_info' or 'get_fetched_urls'. The description implies it's for detailed info on a fetched URL, but lacks explicit context, prerequisites, or exclusions.

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/isiahw1/mcp-server-bing-webmaster'

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