Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

add_connected_page

Submit pages linking to your website to Bing Webmaster Tools for improved search visibility and backlink tracking.

Instructions

Add a page that has a link to your website.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
connected_urlYes

Implementation Reference

  • The main handler function implementing the tool logic by making a POST request to Bing's AddConnectedPage API endpoint.
    async def add_connected_page( site_url: Annotated[str, "The URL of your site"], connected_url: Annotated[str, "The URL of the page linking to your site"], ) -> Dict[str, str]: """ Add a page that has a link to your website. Args: site_url: The URL of your site connected_url: The URL of the page linking to your site Returns: Success message """ async with api: await api._make_request( "AddConnectedPage", "POST", {"siteUrl": site_url, "connectedPageUrl": connected_url}, ) return {"message": f"Connected page {connected_url} added successfully"}
  • Registers the add_connected_page tool with the FastMCP server using the @mcp.tool decorator, specifying name and description.
    @mcp.tool( name="add_connected_page", description="Add a page that has a link to your website." )

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