Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_deep_link_blocks

Retrieve blocked deep links for a website from Bing Webmaster Tools to identify and resolve indexing issues.

Instructions

Get list of blocked deep links.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Implementation Reference

  • The main handler function for the 'get_deep_link_blocks' tool. It is decorated with @mcp.tool which also serves as the registration. It makes an API request to Bing Webmaster Tools to fetch blocked deep links for the given site and ensures type compatibility.
    @mcp.tool(name="get_deep_link_blocks", description="Get list of blocked deep links.") async def get_deep_link_blocks( site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]: """ Get list of blocked deep links. Args: site_url: The URL of the site Returns: List of blocked deep links """ async with api: blocks = await api._make_request(f"GetDeepLinkBlocks?siteUrl={site_url}") return api._ensure_type_field(blocks, "DeepLinkBlock")

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