Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

remove_deep_link_block

Remove deep link blocks from Bing Webmaster Tools to allow search engines to crawl and index specific URL patterns on your website.

Instructions

Remove a deep link block.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
url_patternYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function for the 'remove_deep_link_block' tool, decorated with @mcp.tool for registration. It takes site_url and url_pattern, makes a POST request to 'RemoveDeepLinkBlock' API, and returns a success message.
    @mcp.tool(name="remove_deep_link_block", description="Remove a deep link block.")
    async def remove_deep_link_block(
        site_url: Annotated[str, "The URL of the site"],
        url_pattern: Annotated[str, "URL pattern to unblock"],
    ) -> Dict[str, str]:
        """
        Remove a deep link block.
    
        Args:
            site_url: The URL of the site
            url_pattern: URL pattern to unblock
    
        Returns:
            Success message
        """
        async with api:
            await api._make_request(
                "RemoveDeepLinkBlock",
                "POST",
                {"siteUrl": site_url, "urlPattern": url_pattern},
            )
            return {"message": f"Deep link block for {url_pattern} removed successfully"}
  • The @mcp.tool decorator registers the 'remove_deep_link_block' tool with its name and description.
    @mcp.tool(name="remove_deep_link_block", description="Remove a deep link block.")
  • Input schema defined by Annotated types for site_url (str) and url_pattern (str), output Dict[str, str].
    async def remove_deep_link_block(
        site_url: Annotated[str, "The URL of the site"],
        url_pattern: Annotated[str, "URL pattern to unblock"],
    ) -> Dict[str, str]:
Behavior1/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 but offers none. It does not indicate whether this is a destructive operation, what permissions are required, how it affects the system, or what the output entails, making it inadequate for a mutation tool.

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, straightforward sentence with no wasted words. It is front-loaded and efficiently states the core action, though this brevity comes at the cost of completeness.

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?

For a mutation tool with no annotations, 0% schema coverage, and two required parameters, the description is insufficient. While an output schema exists, the description lacks critical context about the tool's behavior, parameters, and usage, making it incomplete for effective agent operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0%, meaning parameters 'site_url' and 'url_pattern' are undocumented in the schema. The description adds no information about these parameters, their purposes, formats, or examples, failing to compensate for the schema's lack of detail.

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

Purpose2/5

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

The description 'Remove a deep link block' is essentially a tautology that restates the tool name with minimal elaboration. While it identifies the action ('remove') and resource ('deep link block'), it lacks specificity about what a 'deep link block' is or what this operation entails, making it vague compared to more descriptive alternatives.

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. Given sibling tools like 'remove_blocked_url' and 'remove_page_preview_block', the description fails to differentiate this tool's specific context or prerequisites, leaving the agent without clear usage instructions.

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