Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_children_url_traffic_info

Retrieve traffic data for child pages under a specific parent URL from Bing Webmaster Tools to analyze page performance and user engagement.

Instructions

Get traffic information for child URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
parent_urlYes
limitNo

Implementation Reference

  • The async handler function that executes the tool: makes a POST request to 'GetChildrenUrlTrafficInfo' endpoint with siteUrl, parentUrl, limit, and processes the response.
    async def get_children_url_traffic_info(
        site_url: Annotated[str, "The URL of the site"],
        parent_url: Annotated[str, "The parent URL"],
        limit: Annotated[int, "Maximum number of results"] = 100,
    ) -> List[Dict[str, Any]]:
        """
        Get traffic information for child URLs.
    
        Args:
            site_url: The URL of the site
            parent_url: The parent URL
            limit: Maximum number of results (default: 100)
    
        Returns:
            Traffic information for child URLs
        """
        async with api:
            traffic = await api._make_request(
                "GetChildrenUrlTrafficInfo",
                "POST",
                {"siteUrl": site_url, "parentUrl": parent_url, "limit": limit},
            )
            return api._ensure_type_field(traffic, "ChildUrlTrafficInfo")
  • MCP tool registration decorator defining the tool name and description.
    @mcp.tool(
        name="get_children_url_traffic_info",
        description="Get traffic information for child URLs.",
    )

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