Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_feed_details

Retrieve detailed information about a specific feed from Bing Webmaster Tools to analyze feed performance and configuration.

Instructions

Get detailed information about a specific feed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
feed_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function that implements the logic for the 'get_feed_details' tool. It takes site_url and feed_url, makes an API request to Bing Webmaster Tools, and returns the feed details.
    async def get_feed_details(
        site_url: Annotated[str, "The URL of the site"],
        feed_url: Annotated[str, "The URL of the feed"],
    ) -> Dict[str, Any]:
        """
        Get detailed information about a specific feed.
    
        Args:
            site_url: The URL of the site
            feed_url: The URL of the feed
    
        Returns:
            Detailed feed information
        """
        async with api:
            details = await api._make_request(
                f"GetFeedDetails?siteUrl={site_url}&feedUrl={feed_url}"
            )
            return api._ensure_type_field(details, "FeedDetails")
  • The @mcp.tool decorator registers the 'get_feed_details' tool with its name and description.
    @mcp.tool(
        name="get_feed_details",
        description="Get detailed information about a specific feed.",
    )
  • Input schema defined via Annotated types for site_url and feed_url parameters.
        site_url: Annotated[str, "The URL of the site"],
        feed_url: Annotated[str, "The URL of the feed"],
    ) -> Dict[str, Any]:
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 only states the action ('get detailed information') without revealing traits like whether it's read-only, requires authentication, has rate limits, or what the output entails. This leaves significant gaps for a tool with two required parameters.

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 appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration.

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 handles return values) and no annotations, the description is minimally complete but lacks depth. It covers the basic purpose but misses usage guidelines, parameter details, and behavioral context, making it adequate but with clear gaps for effective agent use.

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 'specific feed' but doesn't explain the semantics of 'site_url' and 'feed_url' parameters, their format, or how they relate to each other. No additional meaning beyond the schema is provided.

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 states the tool's purpose as retrieving detailed information about a specific feed, which is clear but vague. It specifies the resource ('feed') and verb ('get detailed information'), but doesn't differentiate from sibling tools like 'get_feeds' or explain what 'detailed information' entails beyond what the output schema might provide.

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. It doesn't mention prerequisites, context, or exclusions, such as how it differs from 'get_feeds' or when to use it over other feed-related tools. The description is standalone with no comparative references.

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