Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_fetched_urls

Retrieve a list of URLs that Bing Webmaster Tools has fetched for your 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

  • Registration of the 'get_fetched_urls' tool using the @mcp.tool decorator, specifying name and description.
    @mcp.tool( name="get_fetched_urls", description="Get list of URLs that have been fetched." )
  • The handler function implementing the tool logic: takes site_url, makes an API request to retrieve fetched URLs, ensures type field, and returns the list.
    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")
  • Input schema (site_url: str) and output schema (List[Dict[str, Any]]) defined in function signature using Annotated types.
    async def get_fetched_urls( site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]:

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