Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_fetched_urls

Retrieve a list of URLs that Bing Webmaster Tools has fetched for your website to monitor indexing status and crawl activity.

Instructions

Get list of URLs that have been fetched.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • Registration of the 'get_fetched_urls' tool using the @mcp.tool decorator, specifying name and description.
    @mcp.tool(
        name="get_fetched_urls", description="Get list of URLs that have been fetched."
    )
  • The handler function implementing the tool logic: takes site_url, makes an API request to retrieve fetched URLs, ensures type field, and returns the list.
    async def get_fetched_urls(
        site_url: Annotated[str, "The URL of the site"]
    ) -> List[Dict[str, Any]]:
        """
        Get list of URLs that have been fetched.
    
        Args:
            site_url: The URL of the site
    
        Returns:
            List of fetched URLs
        """
        async with api:
            urls = await api._make_request(f"GetFetchedUrls?siteUrl={site_url}")
            return api._ensure_type_field(urls, "FetchedUrl")
  • Input schema (site_url: str) and output schema (List[Dict[str, Any]]) defined in function signature using Annotated types.
    async def get_fetched_urls(
        site_url: Annotated[str, "The URL of the site"]
    ) -> List[Dict[str, Any]]:
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states a read operation ('Get list'), implying it's non-destructive, but doesn't disclose behavioral traits like pagination, rate limits, permissions needed, or what 'fetched' means in context. This is inadequate for a tool with no annotation coverage.

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 waste, front-loaded with the core action. It's appropriately sized for a simple tool, making it easy to parse quickly.

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, the description doesn't need to explain return values. However, with no annotations, low parameter coverage, and multiple sibling tools, it lacks context on behavior and usage. It's minimally viable but has clear gaps in guiding the agent effectively.

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 description adds no parameter information beyond the input schema, which has 0% description coverage for the single parameter 'site_url'. Since schema coverage is low, the description doesn't compensate, but with only one parameter, the baseline is slightly higher. It implies filtering by site, but doesn't clarify semantics like format or constraints.

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 action ('Get list') and resource ('URLs that have been fetched'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'get_fetched_url_details' or 'get_url_info', which might have overlapping scopes, so it's not fully specific.

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 description provides no guidance on when to use this tool versus alternatives. With siblings like 'get_fetched_url_details' and 'get_url_info', there's no indication of context, exclusions, or prerequisites, leaving usage ambiguous.

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