Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

remove_sitemap

Remove a sitemap from Bing Webmaster Tools by specifying the site URL and sitemap URL to manage search engine indexing.

Instructions

Remove a sitemap from Bing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
sitemap_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function decorated with @mcp.tool(name="remove_sitemap"), which registers the tool and implements the logic to remove a sitemap by calling the Bing Webmaster API's RemoveFeed endpoint.
    @mcp.tool(name="remove_sitemap", description="Remove a sitemap from Bing.")
    async def remove_sitemap(
        site_url: Annotated[str, "The URL of the site"],
        sitemap_url: Annotated[str, "The URL of the sitemap to remove"],
    ) -> Dict[str, str]:
        """
        Remove a sitemap from Bing.
    
        Args:
            site_url: The URL of the site
            sitemap_url: The URL of the sitemap to remove
    
        Returns:
            Success message
        """
        async with api:
            await api._make_request(
                "RemoveFeed", "POST", {"siteUrl": site_url, "feedUrl": sitemap_url}
            )
            return {"message": f"Sitemap {sitemap_url} removed successfully"}
  • The @mcp.tool decorator registers the remove_sitemap tool with the MCP server.
    @mcp.tool(name="remove_sitemap", description="Remove a sitemap from Bing.")
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 the action ('Remove') but lacks details on permissions required, whether the removal is reversible, potential side effects (e.g., impact on indexing), rate limits, or error conditions. This is inadequate for a mutation tool with zero 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 wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word earns its place in conveying the essential purpose.

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 a mutation tool with no annotations, 0% schema description coverage, and an output schema (which helps but isn't described), the description is incomplete. It lacks parameter semantics, behavioral context (e.g., irreversible deletion), and usage guidelines, making it insufficient for safe and effective tool invocation by an AI agent.

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 but provides no parameter information. It doesn't explain what 'site_url' and 'sitemap_url' represent, their formats, or how they relate (e.g., sitemap must belong to the site). This leaves both parameters undocumented beyond their names in the schema.

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 ('Remove') and resource ('a sitemap from Bing'), making the purpose immediately understandable. It distinguishes itself from sibling tools like 'submit_sitemap' by focusing on removal rather than submission, though it doesn't explicitly contrast with other removal tools like 'remove_blocked_url'.

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. While the purpose implies it's for removing sitemaps, there's no mention of prerequisites (e.g., sitemap must exist), context (e.g., after submission errors), or comparison to related tools like 'remove_feed' or 'submit_sitemap' for correction scenarios.

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