Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_fetched_url_details

Retrieve detailed information about a specific URL that has been fetched by Bing Webmaster Tools, including crawl status and indexing data.

Instructions

Get detailed information about a fetched URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
urlYes

Implementation Reference

  • Handler function for the 'get_fetched_url_details' tool, decorated with @mcp.tool for registration. Fetches detailed information about a fetched URL using the Bing Webmaster API.
    @mcp.tool(
        name="get_fetched_url_details",
        description="Get detailed information about a fetched URL.",
    )
    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")
  • Registration of the 'get_fetched_url_details' tool via @mcp.tool decorator.
    @mcp.tool(
        name="get_fetched_url_details",
        description="Get detailed information about a fetched URL.",
    )

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