get_fetched_url_details
Retrieve detailed information about a URL that has been fetched by Bing Webmaster Tools, including crawl data and indexing status for website analysis.
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-1276 (registration)Registers the 'get_fetched_url_details' tool using the @mcp.tool decorator.@mcp.tool( name="get_fetched_url_details", description="Get detailed information about a fetched URL.", )
- mcp_server_bwt/main.py:1277-1295 (handler)The async handler function that executes the tool logic: takes site_url and url, makes an API request to Bing Webmaster Tools for fetched URL details, and returns typed response.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")