Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_connected_pages

Retrieve pages linking to your website to analyze backlink profiles and monitor referral traffic sources.

Instructions

Get list of connected pages that link to your site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • Registers the get_connected_pages tool using the @mcp.tool decorator.
    @mcp.tool(
        name="get_connected_pages",
        description="Get list of connected pages that link to your site.",
    )
  • The handler function that implements the logic for get_connected_pages by calling the Bing Webmaster API.
    async def get_connected_pages(
        site_url: Annotated[str, "The URL of the site"]
    ) -> List[Dict[str, Any]]:
        """
        Get list of connected pages that link to your site.
    
        Args:
            site_url: The URL of the site
    
        Returns:
            List of connected pages
        """
        async with api:
            pages = await api._make_request(f"GetConnectedPages?siteUrl={site_url}")
            return api._ensure_type_field(pages, "ConnectedPage")
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Get list') but doesn't describe traits like whether it's read-only, requires authentication, has rate limits, returns paginated results, or what the output format entails. This is a significant gap for a tool with no annotation coverage.

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 zero waste, front-loading the core purpose. It's appropriately sized for a simple tool, 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's low complexity (one parameter) and the presence of an output schema, the description is minimally adequate. However, with no annotations and incomplete parameter guidance, it lacks depth for full contextual understanding, though the output schema mitigates some gaps.

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

Parameters3/5

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

The description doesn't add meaning beyond the input schema, which has 0% description coverage. It implies the 'site_url' parameter is needed but doesn't explain its format or constraints. With one parameter and no schema descriptions, the baseline is 3 as the description doesn't compensate for the coverage gap.

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

Purpose4/5

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

The description clearly states the verb ('Get') and resource ('list of connected pages that link to your site'), making the purpose specific and understandable. It distinguishes from siblings like 'get_url_links' or 'get_link_counts' by focusing on pages linking to the user's site, though it doesn't explicitly differentiate them.

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 like 'get_url_links' or 'get_link_counts', which might offer similar or overlapping functionality. The description lacks context about prerequisites or exclusions, leaving usage unclear.

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