get_feed_details
Retrieve comprehensive details about a specific feed, including site and feed URLs, using the Bing Webmaster Tools MCP Server for accurate feed management and analysis.
Instructions
Get detailed information about a specific feed.
Args: site_url: The URL of the site feed_url: The URL of the feed
Returns: List[Feed]: Detailed feed information
Raises: BingWebmasterError: If feed details cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
feed_url | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"feed_url": {
"title": "Feed Url",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"feed_url"
],
"title": "get_feed_detailsArguments",
"type": "object"
}