get_fetched_url_details
Retrieve detailed information about a specific URL that has been fetched by Bing Webmaster Tools, including crawl status and indexing data.
Instructions
Get detailed information about a fetched URL.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes | ||
| url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:1273-1296 (handler)Handler function for the 'get_fetched_url_details' tool, decorated with @mcp.tool for registration. Fetches detailed information about a fetched URL using the Bing Webmaster API.@mcp.tool( name="get_fetched_url_details", description="Get detailed information about a fetched URL.", ) async def get_fetched_url_details( site_url: Annotated[str, "The URL of the site"], url: Annotated[str, "The fetched URL to get details for"], ) -> Dict[str, Any]: """ Get detailed information about a fetched URL. Args: site_url: The URL of the site url: The fetched URL to get details for Returns: Detailed information about the fetched URL """ async with api: details = await api._make_request( f"GetFetchedUrlDetails?siteUrl={site_url}&url={url}" ) return api._ensure_type_field(details, "FetchedUrlDetails")
- mcp_server_bwt/main.py:1273-1276 (registration)Registration of the 'get_fetched_url_details' tool via @mcp.tool decorator.@mcp.tool( name="get_fetched_url_details", description="Get detailed information about a fetched URL.", )