get_url_info
Retrieve detailed insights about a specific URL, including indexing status and performance metrics, directly from Bing Webmaster Tools API via the MCP Server interface.
Instructions
Retrieve detailed information for a specific URL.
Args: site_url: The URL of the site url: The specific URL to get information for
Returns: UrlInfo: Detailed information about the URL
Raises: BingWebmasterError: If URL information cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"url"
],
"title": "get_url_infoArguments",
"type": "object"
}