Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

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

Implementation Reference

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

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