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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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.",
    )
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states it 'gets' information, implying a read-only operation, but doesn't specify permissions, rate limits, data format, or any side effects. For a tool with no annotations, this leaves critical behavioral traits unaddressed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded and appropriately sized for the tool's apparent complexity, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (which likely defines return values), the description doesn't need to explain outputs. However, with no annotations, 0% schema coverage, and three parameters, the description is incomplete—it lacks details on usage, parameters, and behavioral context, making it only minimally adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for undocumented parameters. It mentions 'child URLs' but doesn't explain the three parameters (site_url, parent_url, limit) or their relationships. The description adds minimal meaning beyond the schema, failing to clarify what inputs are needed or how they interact.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get traffic information for child URLs' clearly states the action (get) and resource (traffic information for child URLs), but it's somewhat vague about what 'traffic information' entails and doesn't differentiate from siblings like 'get_url_traffic_info' or 'get_children_url_info'. It provides basic purpose but lacks specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description doesn't mention prerequisites, context, or exclusions, and with siblings like 'get_url_traffic_info' and 'get_children_url_info', there's no indication of how this tool differs or when it's preferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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