get_fetched_urls
Retrieve a list of URLs that Bing has fetched for a specified website to monitor indexing status and crawl activity.
Instructions
Get list of URLs that have been fetched.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:1253-1255 (registration)Registers the 'get_fetched_urls' tool using the @mcp.tool decorator with name and description.@mcp.tool( name="get_fetched_urls", description="Get list of URLs that have been fetched." )
- mcp_server_bwt/main.py:1256-1271 (handler)The main handler function that executes the tool logic: makes an API request to 'GetFetchedUrls' for the given site_url and processes the response.async def get_fetched_urls( site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]: """ Get list of URLs that have been fetched. Args: site_url: The URL of the site Returns: List of fetched URLs """ async with api: urls = await api._make_request(f"GetFetchedUrls?siteUrl={site_url}") return api._ensure_type_field(urls, "FetchedUrl")