Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

remove_site

Remove a website from Bing Webmaster Tools to stop monitoring and managing its search performance data.

Instructions

Remove a site from Bing Webmaster Tools

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function for the 'remove_site' tool. It takes a site_url parameter and uses the api context manager to make a POST request to the 'RemoveSite' endpoint, returning a success message.
    @mcp.tool(name="remove_site", description="Remove a site from Bing Webmaster Tools")
    async def remove_site(
        site_url: Annotated[str, "The URL of the site to remove"]
    ) -> Dict[str, str]:
        """
        Remove a site from Bing Webmaster Tools.
    
        Args:
            site_url: The URL of the site to remove
    
        Returns:
            Success message
        """
        async with api:
            await api._make_request("RemoveSite", "POST", {"siteUrl": site_url})
            return {"message": f"Site {site_url} removed successfully"}
  • The @mcp.tool decorator registers the remove_site function as an MCP tool with the specified name and description.
    @mcp.tool(name="remove_site", description="Remove a site from Bing Webmaster Tools")
  • The function signature defines the input schema (site_url: str) and output type (Dict[str, str]) for the tool.
    async def remove_site(
        site_url: Annotated[str, "The URL of the site to remove"]
    ) -> Dict[str, str]:
Behavior2/5

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

No annotations are provided, so the description carries full burden. 'Remove' implies a destructive mutation, but the description doesn't disclose whether this action is reversible, requires specific permissions, has rate limits, or what happens to associated data. It lacks behavioral context beyond the basic action.

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. It's front-loaded with the core action and resource, making it immediately understandable without unnecessary elaboration.

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 handles return values), 1 parameter, and no annotations, the description is minimally complete for a simple removal operation. However, as a destructive mutation tool with no behavioral disclosure, it should provide more context about effects and prerequisites to be fully adequate.

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 site' but doesn't clarify what 'site_url' should contain (e.g., format, domain requirements). With 1 parameter and no schema descriptions, the description adds minimal semantic value beyond implying the parameter identifies the site.

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 the resource ('a site from Bing Webmaster Tools'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'remove_sitemap' or 'remove_site_role', which also remove resources from the same platform.

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. It doesn't mention prerequisites (e.g., the site must exist in Bing Webmaster Tools), exclusions, or when to choose other removal tools like 'remove_sitemap' or 'remove_site_role'.

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