remove_feed
Remove unwanted sitemap feeds using the MCP server for Bing Webmaster Tools. Specify the site and feed URLs to clean up and manage your submitted sitemaps efficiently.
Instructions
Remove a previously submitted sitemap feed.
Args: site_url: The URL of the site feed_url: The URL of the feed to remove
Raises: BingWebmasterError: If feed cannot be removed
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": "remove_feedArguments",
"type": "object"
}