get_feed_details
Retrieve detailed information about a specific 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:1380-1398 (handler)The handler function that implements the logic for the 'get_feed_details' tool. It takes site_url and feed_url, makes an API request to Bing Webmaster Tools, and returns the feed details.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)The @mcp.tool decorator registers the 'get_feed_details' tool with its name and description.@mcp.tool( name="get_feed_details", description="Get detailed information about a specific feed.", )
- mcp_server_bwt/main.py:1381-1383 (schema)Input schema defined via Annotated types for site_url and feed_url parameters.site_url: Annotated[str, "The URL of the site"], feed_url: Annotated[str, "The URL of the feed"], ) -> Dict[str, Any]: