Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

remove_feed

Remove a feed from Bing Webmaster Tools by specifying the site URL and feed URL to manage your site's content indexing.

Instructions

Remove a feed from Bing Webmaster Tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
feed_urlYes

Implementation Reference

  • Registers the 'remove_feed' tool with the MCP framework, specifying its name and description.
    @mcp.tool(name="remove_feed", description="Remove a feed from Bing Webmaster Tools.")
  • The main handler function for the 'remove_feed' tool. It takes site_url and feed_url as inputs, makes a POST request to the Bing Webmaster Tools 'RemoveFeed' API endpoint, and returns a success message.
    async def remove_feed( site_url: Annotated[str, "The URL of the site"], feed_url: Annotated[str, "The URL of the feed to remove"], ) -> Dict[str, str]: """ Remove a feed from Bing Webmaster Tools. Args: site_url: The URL of the site feed_url: The URL of the feed to remove Returns: Success message """ async with api: await api._make_request( "RemoveFeed", "POST", {"siteUrl": site_url, "feedUrl": feed_url} ) return {"message": f"Feed {feed_url} removed successfully"}
  • Input schema defined using Annotated types for site_url (str) and feed_url (str), with descriptions, and output as Dict[str, str].
    site_url: Annotated[str, "The URL of the site"], feed_url: Annotated[str, "The URL of the feed to remove"], ) -> Dict[str, str]:
  • Helper call to the internal API client method to perform the actual RemoveFeed POST request.
    await api._make_request( "RemoveFeed", "POST", {"siteUrl": site_url, "feedUrl": feed_url} )

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