Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_feed_details

Retrieve detailed information about a specific RSS or Atom feed from Bing Webmaster Tools to analyze feed performance and configuration.

Instructions

Get detailed information about a specific feed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
feed_urlYes

Implementation Reference

  • The get_feed_details tool handler function, which fetches feed details from the Bing Webmaster Tools API using the api._make_request method. The @mcp.tool decorator registers it with the MCP server.
    @mcp.tool( name="get_feed_details", description="Get detailed information about a specific feed.", ) async def get_feed_details( site_url: Annotated[str, "The URL of the site"], feed_url: Annotated[str, "The URL of the feed"], ) -> Dict[str, Any]: """ Get detailed information about a specific feed. Args: site_url: The URL of the site feed_url: The URL of the feed Returns: Detailed feed information """ async with api: details = await api._make_request( f"GetFeedDetails?siteUrl={site_url}&feedUrl={feed_url}" ) return api._ensure_type_field(details, "FeedDetails")
  • MCP tool registration for get_feed_details using the @mcp.tool decorator specifying name and description.
    @mcp.tool( name="get_feed_details", description="Get detailed information about a specific feed.", )

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