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
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes | ||
| feed_url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:1376-1399 (handler)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_server_bwt/main.py:1376-1379 (registration)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.", )