Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

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
NameRequiredDescriptionDefault
site_urlYes

Implementation Reference

  • 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." )
  • 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")

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/isiahw1/mcp-server-bing-webmaster'

If you have feedback or need assistance with the MCP directory API, please join our Discord server