remove_blocked_url
Remove URLs from Bing Webmaster Tools' blocked list to restore search engine indexing for specific pages on your website.
Instructions
Remove a URL from the blocked list.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes | ||
| url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:548-548 (registration)The @mcp.tool decorator that registers the 'remove_blocked_url' tool with its description.@mcp.tool(name="remove_blocked_url", description="Remove a URL from the blocked list.")
- mcp_server_bwt/main.py:549-567 (handler)The main handler function for the 'remove_blocked_url' tool. It takes site_url and url parameters, makes a POST request to the 'RemoveBlockedUrl' endpoint using the api object, and returns a success message.async def remove_blocked_url( site_url: Annotated[str, "The URL of the site"], url: Annotated[str, "The blocked URL to remove"], ) -> Dict[str, str]: """ Remove a URL from the blocked list. Args: site_url: The URL of the site url: The blocked URL to remove Returns: Success message """ async with api: await api._make_request( "RemoveBlockedUrl", "POST", {"siteUrl": site_url, "blockedUrl": url} ) return {"message": f"URL {url} unblocked successfully"}