Skip to main content
Glama
zizzfizzix

Bing Webmaster Tools MCP Server

by zizzfizzix

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation2/5

    Many tools have overlapping purposes, such as multiple get stats tools (get_query_stats, get_page_stats, get_query_page_stats, etc.) and multiple submission tools (submit_url, submit_url_batch, submit_feed). While descriptions are detailed, agents may struggle to select the correct tool for a given task.

    Naming Consistency4/5

    All tool names follow a consistent verb_noun pattern in snake_case (e.g., add_blocked_url, get_feed_details). Minor inconsistency exists with 'enable_disable_query_parameter' being verbose and 'submit' vs 'fetch' verbs, but overall predictable.

    Tool Count2/5

    62 tools is excessive for an MCP server. While Bing Webmaster Tools is feature-rich, many tools could be consolidated (e.g., multiple query stats tools into one parameterized tool). This number overwhelms the agent's selection surface.

    Completeness4/5

    The tool set covers the major functionalities of Bing Webmaster Tools: site CRUD, URL blocking, feed management, crawl settings, traffic stats, and link analysis. Minor gaps exist (e.g., no generic update_site), but overall it's comprehensive for the domain.

  • Average 3/5 across 62 of 62 tools scored. Lowest: 2.4/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    No annotations provided, and description does not disclose behavioral traits such as read-only nature, authentication needs, or rate limits. The only hint is the verb 'retrieve' implying read operations.

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

    Conciseness3/5

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

    Short description but includes unnecessary docstring format (Args, Returns, Raises). Omission of 'self' parameter reduces completeness, but overall length is acceptable.

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

    Completeness2/5

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

    Output schema exists, but description fails to explain the missing 'self' parameter, the implied date range, or how site_url should be formatted. Lacks sufficient context for correct invocation.

    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%. Description only explains 'site_url' (URL of the site) but omits the required 'self' parameter entirely. Also mentions a date range not present in schema, causing confusion.

    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?

    States 'Retrieve crawl statistics for a specific site' which identifies verb and resource, but mentions 'within a date range' despite no date parameters, causing ambiguity. Sibling tools like get_crawl_issues exist but no clear differentiation.

    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 on when to use this tool over siblings like get_crawl_issues or get_crawl_settings. Does not specify prerequisites or alternatives.

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

  • Behavior2/5

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

    No annotations provided, so description must carry full burden. It states return type (Optional[Keyword]) and raises BingWebmasterError, but does not disclose behavioral traits like idempotency, permission requirements, or what 'keyword impression data' entails. The mutation vs. read nature is implied but not explicit.

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

    Conciseness2/5

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

    The description is relatively concise but uses a Python docstring format (Args, Returns, Raises) which may not be optimal for an AI agent. The 'self' parameter appears in the schema but is missing from the description's parameter list, causing inconsistency. Some sentences are unnecessary (e.g., 'Optional[Keyword]' could be in schema).

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

    Completeness2/5

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

    Given the tool has 6 required parameters and no schema descriptions, the description should provide more context. It does not explain the structure of the return type (Keyword), possible values for country/language, or date format. Among many sibling tools, this description does not help an agent differentiate or use it correctly.

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

    Parameters1/5

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

    Schema description coverage is 0%, so description must compensate. The description lists parameter names in Args but provides no explanation beyond the names themselves (e.g., 'query: The keyword query' is just restating the name). The 'self' parameter is omitted from the Args list entirely, leaving it completely undocumented. No formats or constraints are given.

    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 'Get keyword impressions for a selected period' which indicates the action and resource. It distinguishes from siblings like 'get_keyword_stats' by focusing on impressions. However, the inclusion of a mysterious 'self' parameter in the schema (not explained in description) slightly muddles the purpose.

    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 on when to use this tool versus alternatives like 'get_keyword_stats' or 'get_related_keywords'. The description does not mention prerequisites, data source, or context. The 'self' parameter is not explained, which could confuse an agent.

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

  • Behavior2/5

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

    No annotations provided, so the description must carry the full burden. It only states that settings are added and raises a generic error if unsuccessful. It does not disclose whether adding overwrites existing settings, requires specific permissions, or what side effects occur. This is insufficient for a mutation operation.

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

    Conciseness3/5

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

    The description is short and front-loads the purpose, but the Args section duplicates the schema without adding useful detail. It does not violate conciseness but could be more efficient by integrating parameter descriptions into a single paragraph.

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

    Completeness2/5

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

    Given the tool has 3 required parameters (including 'self' which is undocumented), a nested input object, and an output schema (not shown), the description is notably incomplete. It omits one parameter, provides no behavioral notes, and does not explain return values. For a tool of moderate complexity, this falls short.

    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 should compensate. However, it only lists 'site_url' and 'settings' with one-line descriptions, omitting the required 'self' parameter entirely. It provides no guidance on the structure of 'settings' despite a complex schema (including CountryRegionSettings with multiple typed fields). The description adds minimal value over the raw schema.

    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 action 'Add country/region settings for a specific site,' which is a specific verb+resource combination. It distinguishes from sibling tools like 'get_country_region_settings' and 'remove_country_region_settings' by being additive, but does not elaborate on what 'settings' entails beyond the name.

    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 explicit guidance on when to use this tool versus alternatives (e.g., 'get_country_region_settings' for retrieval or 'remove_country_region_settings' for deletion). The description only states the basic action without context or prerequisites, leaving the agent to infer usage.

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

  • Behavior2/5

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

    The description only mentions that the tool adds a block and raises BingWebmasterError on failure. It does not disclose behavioral traits such as whether it is destructive, mutative, or requires specific permissions. Without annotations, the description fails to provide sufficient behavioral context.

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

    Conciseness3/5

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

    The description is very concise with only a few lines, but it is under-specified. It lists arguments and errors in a structured docstring format, which is easy to parse, but the brevity comes at the cost of completeness.

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

    Completeness2/5

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

    Given the complexity of the tool (5 required parameters, no annotations, no output schema details), the description is insufficient. It does not explain what a deep link block is, what the return value looks like, or how to use the tool correctly in context. The presence of an output schema is not utilized in the description.

    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?

    The input schema has 0% description coverage, and the description only lists parameter names without explaining their meaning or constraints. For instance, 'self' is not defined, and the other parameters have inferred but not explicit semantics. The description adds minimal value beyond the schema itself.

    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 states the action 'Add a deep link block' which is a specific verb+resource. It clearly indicates what the tool does, though it lacks explanation of what a deep link block is. The name and description are sufficient to distinguish from sibling tools like add_blocked_url or add_connected_page, but the resource's purpose is not elaborated.

    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 about when to use this tool versus alternatives like add_blocked_url or add_page_preview_block. There is no information about prerequisites, context, or situations where this tool should or should not be used.

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

  • Behavior2/5

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

    No annotations exist, so the description must convey behavioral traits. It only states the basic action without mentioning side effects, permissions, rate limits, or any constraints. This is insufficient for a tool that may require authentication or have limitations.

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

    Conciseness3/5

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

    The description is concise with a single sentence followed by structured Args/Returns/Raises sections. However, it could be more informative without adding bulk; the current structure is acceptable but not exceptional.

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

    Completeness2/5

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

    Given the tool has two required parameters and an output schema, the description should clarify the meaning of 'connected pages', the role of 'self', and any prerequisites. It lacks completeness, leaving ambiguity for an agent trying to use it correctly.

    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. It explains 'site_url' in the Args section but fails to describe the 'self' parameter, which is also required. This leaves a gap in understanding for half the parameters.

    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 tool retrieves a list of pages connected to a site, with a specific verb ('Get') and resource ('list of pages connected to the site'). It does not explicitly differentiate from siblings, but the purpose is distinct enough among many 'get_' tools.

    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?

    The description provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites or when not to use it. Given the large number of sibling tools, explicit usage context would be beneficial.

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

  • Behavior2/5

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

    No annotations are provided, so the description must fully convey behavior. It only states it retrieves statistics and may raise BingWebmasterError, but fails to disclose any side effects, permission requirements, read-only nature, or result characteristics (e.g., pagination, limits).

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

    Conciseness3/5

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

    The description is reasonably concise and structured with Args/Returns/Raises sections. However, it wastes space repeating parameter names already in the schema without adding much value for most, and the missing 'self' parameter undermines structural completeness.

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

    Completeness2/5

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

    The Returns line and output schema hint at the return type, but the description lacks any broader context: no usage scenarios, error details beyond a generic exception, or explanation of what 'keyword statistics' contain. The omission of 'self' makes it incomplete for correct 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?

    The description explains three parameters (query, country, language) with examples, but omits the 'self' parameter entirely. Given 0% schema coverage, the description should compensate, but it leaves a required parameter undocumented, severely hindering correct tool invocation.

    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 action ('Retrieve') and the resource ('keyword statistics for a specific query'). However, it does not differentiate from siblings like get_keyword or get_query_stats, leaving ambiguity about what exactly 'keyword statistics' encompasses.

    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?

    The description provides no guidance on when to use this tool versus alternatives. There is no mention of context, prerequisites, or when not to use it, which is critical given many similar sibling tools.

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

  • Behavior2/5

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

    No annotations provided, so description carries the burden. It mentions returns a list and can raise an error, but lacks details on rate limits, authentication, or any behavioral quirks beyond the basic docstring.

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

    Conciseness3/5

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

    The description follows a clear docstring format with Args, Returns, Raises. However, it is slightly verbose and could be more compact without losing clarity.

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

    Completeness2/5

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

    With many sibling tools and no output schema details, the description lacks context for an agent to understand how this tool fits in the broader set. It does not explain what 'detailed traffic statistics' means or how it differs from similar tools.

    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 coverage is 0%, but description only repeats parameter names with minimal context (e.g., 'The URL of the site'). It does not add meaningful semantics beyond the schema, and the 'self' parameter is unexplained.

    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 it gets detailed traffic statistics for a specific page. However, it does not differentiate from sibling tools like get_page_stats or get_query_page_stats, which may have similar purposes.

    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 on when to use this tool versus alternatives. There are many sibling tools for statistics, but no context about when to prefer this one.

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

  • Behavior2/5

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

    No annotations are present, so the description carries full responsibility for behavioral disclosure. It only states that the tool retrieves sites and raises an error on API failure. It does not disclose authentication needs, rate limits, data freshness, or any side effects. For a read operation, this is minimal transparency.

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

    Conciseness4/5

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

    The description is concise (two sentences plus Returns and Raises sections). The structure is clear and front-loaded with the main purpose. However, the Returns and Raises sections are somewhat redundant given the output schema, but they do not detract from conciseness.

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

    Completeness2/5

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

    Given the tool's simplicity (1 parameter, output schema exists), the description is incomplete. It fails to explain the 'self' parameter or provide any usage context. For a tool with 0% schema description coverage, the description should compensate but does not. Additionally, no mention of pagination or limits, though the output schema may partially cover return values.

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

    Parameters1/5

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

    The input schema has one parameter 'self' with 0% description coverage, and the description does not explain its meaning or format. The tool description adds no value beyond the schema. An agent cannot infer how to correctly populate the required 'self' parameter, making invocation error-prone.

    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 action: 'Retrieve all sites in the user's Bing Webmaster Tools account.' The verb 'Retrieve' and resource 'sites' are specific, and the scope is clarified. However, it does not explicitly distinguish this tool from other get_* sibling tools like get_url_info or get_site_roles, which might cause confusion for an agent deciding between 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. The description does not mention prerequisites, context, or exclusions. An agent would need to infer usage from the tool name alone, which is insufficient for optimal selection among many similar siblings.

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

  • Behavior2/5

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

    No annotations are present, so the description must compensate. It mentions saving settings but lacks details on overwriting behavior, required permissions, or error conditions beyond a generic exception.

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

    Conciseness3/5

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

    The description is very short but includes an Args list that is not structured as clear schema documentation. It is concise but sacrifices completeness.

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

    Completeness1/5

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

    With 3 parameters, no descriptions, no behavioral details, and annotations missing, the description fails to provide sufficient context for an AI agent to use the tool correctly, especially for a write operation.

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

    Parameters1/5

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

    Schema coverage is 0%, and the description only lists site_url and crawl_settings without explaining their meaning or format. The 'self' parameter is omitted entirely, and the CrawlSettings type fields are not described.

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

    Purpose5/5

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

    The description clearly states the verb 'save' and resource 'crawl settings' for a specific site, distinguishing it from sibling tools like get_crawl_settings.

    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, alternatives, or prerequisites (e.g., verifying the site first). Only a brief description of the action.

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

  • Behavior2/5

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

    The description only mentions that a BingWebmasterError is raised if the URL cannot be fetched. With no annotations, the agent lacks information on side effects, whether the operation is read-only, rate limits, or authorization requirements.

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

    Conciseness4/5

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

    The description is concise with a clear action and error note. It is front-loaded with the purpose, though the inclusion of 'self' in the args list without explanation slightly reduces clarity.

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

    Completeness2/5

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

    The description does not mention the output of the fetch (despite an output schema existing), nor does it cover prerequisites, permissions, or the scope of the operation. The agent is left to assume the result.

    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?

    The input schema has 0% description coverage, and the description explains 'site_url' and 'url' but not the required 'self' parameter. The agent cannot understand the role of 'self', and URL format or restrictions are omitted.

    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 tool requests Bing to fetch a specific URL immediately. While it does not explicitly differentiate from similar tools like 'submit_url' or 'get_fetched_url_details', the intent is clear for a fetch operation.

    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, such as submitting a URL for crawling or retrieving previously fetched results. The description lacks context for appropriate usage.

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

  • Behavior2/5

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

    No annotations provided; description only mentions returns and raises. It does not discuss side effects, permissions, or safety, leaving behavioral assumptions to the agent.

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

    Conciseness4/5

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

    The description is brief and structured with Args, Returns, Raises. The deprecation note is front-loaded. It is efficient but could be slightly more compact.

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

    Completeness2/5

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

    The output schema exists but the description does not contextualize what 'deep links' are. Given the tool's deprecation and sibling complexity (e.g., add/remove/update deep link tools), more guidance is needed.

    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?

    The schema has 3 required parameters (self, site_url, url) with 0% description coverage. The description explains site_url and url but omits self, leaving one parameter undocumented.

    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 states 'Get deep links for a specific algo URL' which clearly identifies the verb and resource. However, 'algo URL' is ambiguous and not explained, slightly reducing clarity.

    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 on when to use this tool versus alternatives like get_deep_link_algo_urls or get_deep_link_blocks. The deprecation note hints at avoidance but does not suggest a replacement.

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

  • Behavior2/5

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

    With no annotations provided, the description should disclose behavioral traits. It mentions the return type and raises BingWebmasterError, but does not specify side effects, permissions, or limits. The tool likely performs a read operation, but this is not explicitly stated.

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

    Conciseness4/5

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

    The description is succinct and follows a clear docstring format. It is not verbose, but it sacrifices completeness for brevity.

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

    Completeness2/5

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

    The description fails to fully document the input schema (missing 'self' parameter) and does not elaborate on the output structure despite having an output schema. For a tool with 2 required parameters and no sibling differentiation, more context is needed.

    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 explain all parameters. The description documents 'site_url' but completely omits the 'self' parameter, which is also required. This is a significant gap for parameter understanding.

    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 tool retrieves 'detailed traffic statistics for top pages' with a specific verb and resource. However, it does not explicitly differentiate from sibling tools like get_page_query_stats or get_query_page_stats, which could cause confusion.

    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. Sibling tools include many similar get_* functions, but the description lacks any selection criteria or context for choosing this one.

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

  • Behavior2/5

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

    With no annotations, the description must disclose behaviors. It states returns and raises but omits details like what defines 'top queries', authentication needs, rate limits, or read-only status. Minimal transparency.

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

    Conciseness4/5

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

    Short and structured with Args/Returns/Raises sections. Efficient but could be more clearly formatted for quick scanning.

    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?

    Has output schema and explains returns, but missing explanation of 'self' parameter and lacks usage context. Adequate but not comprehensive.

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

    Parameters1/5

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

    Schema coverage is 0% and the description only mentions site_url, ignoring the required 'self' parameter. Fails to explain semantics or usage of parameters beyond the schema.

    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?

    Describes 'Get detailed traffic statistics for top queries' with a clear verb+resource. While it hints at aggregation for top queries, it does not explicitly differentiate from siblings like get_keyword_stats or get_query_traffic_stats.

    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 on when to use this tool vs. alternatives (e.g., get_keyword_stats, get_page_query_stats). The description only lists parameters and returns, lacking context for selection.

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

  • Behavior2/5

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

    With no annotations, the description must fully disclose behavior, but it only mentions return type and possible exception. It does not cover side effects, permissions, rate limits, or the significance of the 'self' parameter, which is required but not explained.

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

    Conciseness4/5

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

    The description is short and follows a clear structure (Args, Returns, Raises). It is concise, though the omission of the 'self' parameter detracts slightly from completeness.

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

    Completeness2/5

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

    Given the complexity of siblings and lack of annotations, the description is incomplete. It does not help distinguish from other query statistic tools, and fails to explain a required parameter. The presence of an output schema is noted but does not compensate for missing context.

    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. It describes 'site_url' and 'query' briefly but omits the required 'self' parameter entirely. No additional details on format, constraints, or usage are provided.

    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 tool retrieves 'detailed traffic statistics for a specific query', providing a specific verb and resource. However, it does not differentiate from closely related siblings like 'get_rank_and_traffic_stats', which also deals with traffic statistics for queries.

    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 such as 'get_rank_and_traffic_stats' or 'get_query_stats'. There is no mention of prerequisites, context, or scenarios where this tool is preferred.

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

  • Behavior2/5

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

    Without annotations, the description must disclose behavioral traits, but it only mentions basic functionality and error handling. No information is given about side effects, permissions, rate limits, or data freshness. The unexplained 'self' parameter also lacks context.

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

    Conciseness4/5

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

    The description is short and structured with Args/Returns/Raises sections. It is efficient but somewhat under-specified for a tool with two parameters and no annotations.

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

    Completeness2/5

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

    Despite the presence of an output schema (implied), the description lacks crucial context such as the format of the URL, interpretation of results, or any usage notes. For a tool with no annotations and 0% schema description coverage, this is insufficient.

    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 should clarify parameters beyond schema titles. It only repeats that 'site_url' is the site URL, adding no new meaning, and provides no explanation for the 'self' parameter.

    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 'Get ranking and traffic statistics for a site,' specifying the verb and resource. However, it does not differentiate this tool from numerous sibling 'get_*' tools like get_page_stats or get_query_stats, which could cause confusion.

    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?

    The description provides no guidance on when to use this tool versus alternatives, nor does it state any prerequisites or exclusions. The agent is left to infer usage from the name alone.

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

  • Behavior2/5

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

    The description mentions that an error is raised if settings cannot be removed, which is a behavioral trait. However, with no annotations provided, the description fails to disclose important details such as whether the operation is idempotent, what happens if settings do not exist, or any side effects on site configuration.

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

    Conciseness3/5

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

    The description is structured with an Args section and a Raises section, which is concise. However, it is incomplete due to missing the 'self' parameter, and the content is very brief. It could be more informative without becoming verbose.

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

    Completeness2/5

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

    Given the complexity (3 required parameters, nested object schema, output schema available) and the absence of annotations, the description is insufficient. It does not explain the output, nor does it provide usage context relative to sibling tools. The missing parameter and minimal semantics further reduce completeness.

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

    Parameters1/5

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

    The description lists only two parameters (site_url and settings) but omits the 'self' parameter, which is required according to the input schema. The provided descriptions are minimal ('The URL of the site' and 'The country/region settings to remove') and do not clarify the structure or purpose of the complex 'settings' object. Schema description coverage is 0%, so the description fails to compensate.

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

    Purpose5/5

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

    The description clearly states 'Remove country/region settings from a specific site,' which is a specific verb-resource combination. It distinguishes from sibling tools like add_country_region_settings and get_country_region_settings by indicating removal rather than addition or retrieval.

    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. There is no mention of prerequisites, such as requiring the settings to exist, or when not to use it. The brief description lacks context for decision-making.

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

  • Behavior2/5

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

    With no annotations, the description must fully disclose behavior. It only states the action and an error condition, lacking details on destructiveness, side effects, permissions, or response behavior.

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

    Conciseness4/5

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

    The description is very short and to the point, with a single line and list of args. It is efficient, though it sacrifices informational depth for brevity.

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

    Completeness2/5

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

    For a mutation tool with 3 required parameters and no annotations, the description is incomplete: it does not explain the 'self' parameter, lacks return value details despite an output schema, and omits prerequisites or context about role removal.

    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 clarify parameter meaning. It merely restates parameter names with trivial descriptions (e.g., 'The URL of the site'), adding no value over the schema; the complex site_role type is not explained.

    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 states 'Remove a user's site access,' which is a clear verb+resource. It distinguishes from sibling tools like add_site_roles and get_site_roles, though it could be more precise by mentioning 'role' removal.

    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?

    The description provides no guidance on when to use this tool versus alternatives such as add_site_roles or other role-related tools, and no conditions or prerequisites are mentioned.

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

  • Behavior2/5

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

    No annotations are provided, so the description should carry the full burden. It mentions that a BingWebmasterError is raised if the parameter cannot be added, but does not disclose whether parameters are overwritten, if idempotency applies, or any other side effects of the addition.

    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 extremely concise with two clear sentences, an Args section, and a Raises note. Every sentence serves a purpose without fluff.

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

    Completeness2/5

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

    Given zero annotations, three required parameters with poor schema coverage, and an output schema that exists but is not described, the description fails to provide enough context for correct invocation. The 'self' parameter is ignored, and the return behavior is omitted.

    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%, yet the description only adds minimal meaning for site_url and query_parameter, repeating their names. The required 'self' parameter is completely undocumented, leaving the agent uninformed about its purpose.

    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 action (add) and the resource (URL normalization parameter for a site). It distinguishes from sibling tools like remove_query_parameter and enable_disable_query_parameter by implying addition as a distinct operation.

    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 on when to use this tool versus alternatives such as enable_disable_query_parameter or remove_query_parameter. The description lacks context for typical use cases or prerequisites.

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

  • Behavior2/5

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

    No annotations provided, so description carries full burden. It does not disclose side effects, permissions, error behaviors beyond the single error mention, or whether it is read-only. The description only states what it returns.

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

    Conciseness4/5

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

    The description is short and structured with Args/Returns/Raises sections. It is easy to parse and contains no unnecessary words. However, the structured format adds some redundancy.

    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?

    The description covers the basic purpose and return type, but misses the 'self' parameter entirely and lacks usage context or preconditions. Given the simplicity of the tool (2 params, no enums), it is adequate but not fully complete.

    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?

    Only one of two required parameters (site_url) is described in the description. The 'self' parameter is completely undocumented in both schema and description. Schema description coverage is 0%, so the description's partial coverage is insufficient.

    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?

    Description clearly states 'Get deep link blocks for a site', which is specific and matches the tool name. However, it does not distinguish from sibling tools like get_deep_link or get_deep_link_algo_urls, missing an opportunity to clarify uniqueness.

    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 on when to use this tool versus alternatives. It does not mention when to use or not use, nor does it reference other tools.

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

  • Behavior2/5

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

    No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, permissions, or rate limits. The only behavioral info is the error type (BingWebmasterError) mentioned in the Raises section.

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

    Conciseness4/5

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

    The description is concise with a clear purpose line followed by structured Args/Returns/Raises sections. It is front-loaded and efficient, though the docstring format adds some unnecessary verbosity.

    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 3 required params, no param descriptions in schema, and an output schema exists, the description is moderately complete. It covers the operation and error, but misses the 'self' parameter, leaving a gap in parameter understanding.

    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. It describes site_url and url but omits the required 'self' parameter entirely. The provided descriptions are minimal ('The URL of the site', 'The specific URL to get details for'), adding little beyond parameter names.

    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 'Get detailed information about a specific fetched URL', providing a specific verb and resource. It differentiates from siblings like get_fetched_urls (list) and get_url_info (general info), though the distinction from get_url_info is not explicit.

    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 on when to use this tool versus alternatives. The description implies usage for fetching URL details but does not state when not to use or suggest alternative tools.

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

  • Behavior2/5

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

    No annotations are provided, so the description must fully disclose behaviors. It states it retrieves info and raises an error, but does not confirm read-only nature, required permissions, rate limits, or side effects. For a retrieval tool, this is minimal.

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

    Conciseness4/5

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

    The description is concise with clear sections for Args, Returns, and Raises. It avoids unnecessary detail and is well-structured, though the 'self' parameter omission reduces clarity.

    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?

    The output schema exists, so return details are not required. However, the description lacks usage context, prerequisites, and fails to document all parameters. For a simple retrieval tool with three parameters, the description is adequate but not thorough.

    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 explain parameters. It briefly explains site_url and url, but the 'self' parameter is entirely undocumented. This leaves one of three required parameters undefined, which is a significant 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 tool retrieves detailed information for a specific URL and names the two key parameters (site_url, url). However, it does not differentiate from sibling tools like get_url_traffic_info or get_url_links, leaving some ambiguity about what 'detailed information' entails.

    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 instead of alternatives such as get_url_traffic_info, get_url_links, or other URL-focused tools. The description lacks context about prerequisites or scenarios best suited for this tool.

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

  • Behavior2/5

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

    No annotations exist, but description only says 'Remove' and raises error. No side effects, prerequisites, or reversibility mentioned.

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

    Conciseness4/5

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

    Description is short with Args and Raises sections. Could be more informative, but not verbose.

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

    Completeness2/5

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

    Parameter explanation is incomplete, behavioral details minimal. Although output schema exists, description does not mention return value or compensate for missing param info.

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

    Parameters1/5

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

    Schema coverage 0%. Description lists site_url but does not explain 'self' parameter, which is required. Not all parameters are documented.

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

    Purpose5/5

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

    The description clearly states the action (Remove a site) and resource (site from Bing Webmaster Tools). It distinguishes from siblings like add_site and remove_site_role.

    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 on when to use this tool versus alternatives (e.g., delete vs disable). Only basic exception mentioned.

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

  • Behavior2/5

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

    With no annotations, the description must disclose behavioral traits. It mentions raising BingWebmasterError on failure, but lacks details about idempotency, permission requirements, or effects on existing blocks. The enum values for 'reason' are not explained.

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

    Conciseness4/5

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

    The description is brief with a clear structure: purpose, parameter list, and error info. However, it is not self-contained as it omits the 'self' parameter, forcing the agent to infer from the schema. Still, it is efficient for a simple tool.

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

    Completeness2/5

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

    Given the tool has 4 required params and no annotations, the description should fully enable correct invocation. It misses the 'self' parameter and does not explain the enum for reason. An output schema exists but is not referenced, leaving the agent uninformed about return values.

    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?

    The schema has 0% coverage, so the description must compensate. It describes site_url, url, and reason, but omits the required 'self' parameter entirely. The reason parameter is described vaguely ('The reason for blocking the page preview') without explaining the enum integer meanings.

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

    Purpose5/5

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

    The description 'Add a page preview block' clearly states the action (add) and the resource (page preview block), distinguishing it from siblings like add_blocked_url or remove_page_preview_block. The verb is specific and the resource is unambiguous.

    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?

    The description provides no guidance on when to use this tool versus alternatives (e.g., get_active_page_preview_blocks). It only lists arguments and errors, offering no context for decision-making.

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

  • Behavior2/5

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

    No annotations provided, so description carries full burden. Only mentions raising BingWebmasterError, but lacks details on mutation effects, idempotency, authorization, or side effects. Inadequate for a write operation.

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

    Conciseness3/5

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

    Fairly concise but includes redundant 'Args:' section that duplicates schema information. Could be trimmed to a single sentence without losing content.

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

    Completeness2/5

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

    Output schema exists but description does not mention return value. Missing details like idempotency, prerequisites (e.g., account verification), rate limits, and error handling beyond the generic exception.

    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%. The description explains site_url but ignores the 'self' parameter entirely. Even the Args section only covers one of two parameters, leaving meaning of 'self' ambiguous.

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

    Purpose5/5

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

    The description 'Add a new site to Bing Webmaster Tools' clearly specifies the verb (add), resource (site), and platform. It distinguishes itself from sibling tools like add_blocked_url or add_connected_page.

    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 on when to use this tool vs alternatives, no prerequisites, and no mention of preconditions like site ownership or verification. The only hint is an error condition, but no contextual help for choosing this over other tools.

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

  • Behavior2/5

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

    No annotations are provided, so the description must fully disclose behavioral traits. It mentions it returns a list and raises an error, but does not state whether the operation is read-only, safe, or requires specific permissions. The description lacks important behavioral context.

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

    Conciseness3/5

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

    The description is relatively short but includes non-standard sections like 'Args:', 'Returns:', 'Raises:' which are verbose for a tool description. It could be more concise and front-loaded. The unexplained 'self' parameter adds unnecessary confusion.

    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 an output schema exists, the description does not need to detail return values. However, it omits explanation for the 'self' parameter and provides no filtering or pagination context. The tool is simple, but the missing parameter documentation reduces completeness.

    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 coverage is 0%, meaning the description adds no explanation for the two required parameters. It lists 'site_url' in Args but provides no additional meaning. The parameter 'self' is unexplained entirely, leaving the agent with no semantic guidance beyond the schema's type information.

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

    Purpose5/5

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

    The description clearly states the purpose: 'Get active page preview blocks for a site.' It specifies the action (get) and the resource (active page preview blocks). The mention of 'site_url' as input further clarifies the scope. This distinguishes it from sibling tools like add_page_preview_block or remove_page_preview_block.

    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 merely states what it does, without mentioning prerequisites, exclusions, or when not to use it. Given the many sibling tools, this is a significant gap.

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

  • Behavior2/5

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

    With no annotations, the description must disclose behavioral traits. It mentions the BingWebmasterError exception and return type, but lacks details on permissions, rate limits, side effects, or pagination behavior beyond the page parameter.

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

    Conciseness3/5

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

    The docstring format is organized and concise, but the missing 'self' parameter and incomplete filter_properties description reduce effectiveness. It is not too wordy, but incompleteness harms conciseness.

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

    Completeness2/5

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

    Given the tool's complexity (5 params, no annotations, output schema exists), the description is incomplete. It fails to explain the required 'self' parameter, offers no guidance on filter usage, and does not differentiate from similar siblings like get_children_url_traffic_info.

    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 coverage is 0%, so the description must compensate. It describes four of five parameters (missing 'self') with brief explanations. The filter_properties parameter is vague despite being a complex object with enums. The omission of 'self' is a significant gap.

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

    Purpose5/5

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

    The description clearly states it retrieves information for child URLs of a specific URL using specific verbs and resource. It effectively distinguishes from siblings like get_children_url_traffic_info and get_url_info.

    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 explicit when-to-use or when-not-to-use guidance is provided. The description only states what the tool does, leaving the agent to infer usage from context. Given many sibling tools, this is insufficient.

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

  • Behavior2/5

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

    No annotations are provided, so the description must carry the full burden. It mentions 'Get' implying read, but lacks disclosure on permissions, rate limits, pagination mechanics, or data staleness. The page parameter suggests pagination but is not explained.

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

    Conciseness3/5

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

    The description is reasonably concise with two lines of text plus structured Args/Returns/Raises sections. However, it wastes space by not documenting the 'self' parameter and could be more efficient.

    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 4 parameters (3 required) and an output schema, the description minimally covers returns (List[UrlTrafficInfo]) and raises. However, parameter documentation is sparse, and important context like what traffic details are included is missing.

    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 add meaning. The Args section lists site_url, url, and page but provides no details beyond names. The 'self' parameter is completely undocumented. No formats, constraints, or examples are given.

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

    Purpose5/5

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

    The description clearly states 'Get traffic details for child URLs of a directory.' This specific verb-resource combination distinguishes it from siblings like get_url_traffic_info (single URL) and get_children_url_info (info other than traffic).

    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?

    The description does not provide any when-to-use or when-not-to-use guidance relative to sibling tools. It only implies usage for directory child URL traffic but lacks explicit exclusions or alternatives.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries full burden. It only states the action and returns, omitting behavioral traits like side effects, auth requirements, or error conditions beyond a generic raise clause.

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

    Conciseness4/5

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

    The description is short and includes structured Args/Returns/Raises sections. The deprecation note is front-loaded. It is efficient but could be more explicit about the return type.

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

    Completeness2/5

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

    For a deprecated tool, completeness is less critical, but the description lacks explanation of what 'algo URLs' are and does not fully leverage the output schema. Parameters are only partially documented.

    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%, but the description documents 'site_url' as 'The URL of the site'. However, 'self' is not described, leaving one parameter undocumented.

    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 tool retrieves 'algo URLs with deep links', using a specific verb and resource. It distinguishes from siblings like 'get_deep_link' by adding 'algo', though 'algo' is not defined.

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

    Usage Guidelines3/5

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

    The explicit '(Deprecated)' provides usage guidance to avoid new use, but no alternative tool is suggested. Siblings exist (e.g., 'get_deep_link'), but no replacement is mentioned.

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

  • Behavior2/5

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

    No annotations provided, so description carries full burden. It only mentions returning a list and raising an error, omitting side effects, rate limits, or permissions.

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

    Conciseness3/5

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

    The description is structured with Args, Returns, Raises sections, but is excessively terse, lacking necessary detail.

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

    Completeness2/5

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

    With many sibling tools and moderate complexity, the description fails to provide enough context about what the feed list contains or when to use this tool.

    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 coverage is 0%. Description explains 'site_url' but completely ignores the 'self' parameter, leaving it undocumented.

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

    Purpose5/5

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

    The description clearly states the action 'Get all' and the resource 'sitemap feeds for a site', distinguishing it from siblings like 'get_feed_details' and 'submit_feed'.

    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 on when to use this tool versus alternatives among many sibling tools, such as 'get_feed_details' or 'submit_feed', which could be confused.

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

  • Behavior2/5

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

    No annotations exist, so the description must carry the full burden. It only states the return type and error, but does not disclose read-only nature, authentication needs, or rate limits, leaving behavioral traits unclear.

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

    Conciseness3/5

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

    The description is concise but includes unnecessary docstring sections (Args, Returns, Raises) that are atypical for MCP. It could be more streamlined and front-loaded.

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

    Completeness2/5

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

    Despite an implied output schema, the description does not explain return format or status fields, nor does it differentiate among many siblings. It lacks sufficient context for the agent.

    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 coverage is 0%, so the description must compensate. It only explains 'site_url' as 'The URL of the site', omitting 'self' entirely. This partial coverage leaves ambiguity for one parameter.

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

    Purpose5/5

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

    The description clearly states the tool retrieves a list of URLs that have been submitted for fetching. It specifies the action (get) and resource (fetched URLs), effectively distinguishing it from siblings like get_fetched_url_details and fetch_url.

    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, nor are prerequisites or exclusions mentioned. The description lacks context for an agent to decide between this and similar tools.

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

  • Behavior2/5

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

    No annotations are present, so the description carries full burden. It implies a read-only operation ('retrieve') but does not explicitly state no side effects, rate limits, or other behavioral traits. Minimal disclosure beyond the basic function.

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

    Conciseness4/5

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

    The description is relatively short and front-loaded with the main sentence. It uses a clear structure with Args/Returns/Raises. There is no wasted text, though it could be more concise by omitting obvious formatting.

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

    Completeness2/5

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

    The tool has an output schema, so detailed return values are not required, but the description omits explanation of pagination (via page parameter) and the meaning of the required 'self' parameter. The overall context is incomplete for a paginated tool with an undocumented parameter.

    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 schema description coverage is 0%, so the description adds meaning for site_url and page parameters. However, the required 'self' parameter is not described, leaving a gap. The added descriptions are basic but functional.

    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 tool retrieves link counts for a specific site, using a specific verb and resource. It distinguishes from siblings like get_url_links which deals with actual links, not counts. However, it does not explicitly differentiate from similar tools.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It includes Args/Returns/Raises which aid usage but lacks contextual recommendations or prerequisites.

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

  • Behavior2/5

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

    With no annotations, the description must reveal behavioral aspects. It mentions a 'Raises' clause for errors but does not disclose side effects, permissions, or performance implications. It implies a read operation but lacks explicit safe-read indication.

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

    Conciseness3/5

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

    The description is moderately concise at 9 lines but uses a verbose Python docstring style. It could be more compact without losing clarity.

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

    Completeness2/5

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

    Although it mentions return type (List[SiteRole]) and error, it does not explain what SiteRole objects contain or provide usage context. Given the existence of an output schema (unknown content), the description may be adequate, but without seeing it, there is a gap.

    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?

    The description explains site_url and include_all_subdomains, but the 'self' parameter (required) is not mentioned. Schema description coverage is 0%, so the description should compensate but fails to cover all parameters.

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

    Purpose5/5

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

    Description clearly states 'Get all roles assigned for a specific site' with specific verb and resource. It distinguishes itself from siblings like add_site_roles and remove_site_role as a read-only operation.

    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 on when to use this tool vs alternatives such as get_sites or other role-related tools. The description does not provide any context for selection or exclusion criteria.

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

  • Behavior2/5

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

    No annotations are provided, and the description does not disclose key behavioral traits such as side effects, rate limits, or permissions. It mentions error type and return type but lacks depth.

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

    Conciseness4/5

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

    The description is concise and follows a clear docstring-like structure. Each sentence adds value, though the format could be more narrative for an AI agent.

    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 four parameters and an output schema, the description covers the main inputs and outputs. However, it lacks usage examples and fails to document the 'self' parameter, leaving a gap.

    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 adds meaningful context for three of four parameters (site_url, link, page), including explanations of what they represent. However, the 'self' parameter is entirely undocumented in both schema and description.

    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 tool retrieves inbound links for a specific URL, using a specific verb and resource. While it doesn't explicitly differentiate from sibling tools, the name and purpose are distinct enough.

    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 on when to use this tool versus alternatives, or any prerequisites/exclusions. The description simply defines what the tool does without context.

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

  • Behavior2/5

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

    With no annotations, the description carries full burden but only mentions a raised error. Does not disclose success behavior, side effects, or authorization needs. Minimal behavioral insight beyond the action itself.

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

    Conciseness4/5

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

    Short and front-loaded with purpose. The Args section is somewhat redundant given the schema, but the schema lacks descriptions, so it provides minimal value. Efficient overall.

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

    Completeness2/5

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

    Given 5 required parameters, no annotations, and an output schema (unused), the description lacks return value info and context on prerequisites or scope. Falls short for a complete specification.

    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?

    The description lists parameter names but adds no semantic meaning beyond the schema. Schema has 0% description coverage, so the description should compensate but fails to explain formats, constraints, or the role of 'self'.

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

    Purpose5/5

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

    The description states 'Remove a deep link block' with a specific verb ('Remove') and resource ('deep link block'). It clearly distinguishes from sibling tools like add_deep_link_block and get_deep_link_blocks.

    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 on when to use this tool versus alternatives. Does not mention prerequisites, exclusions, or comparison to related tools like get_deep_link_blocks or add_deep_link_block.

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

  • Behavior2/5

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

    With no annotations, the description carries full burden for behavioral disclosure. It only states the tool submits a request and raises an error on failure, but lacks details on mutability, permissions, idempotency, or side effects. The 'self' parameter is not explained, further reducing transparency.

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

    Conciseness3/5

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

    The description is concise with a single line for the action and structured arg list. However, it sacrifices necessary detail for brevity, making it merely adequate. It is front-loaded but incomplete.

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

    Completeness2/5

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

    Given the complexity (3 required params, one with nested object and enums) and lack of annotations, the description is incomplete. It omits output behavior, prerequisites, and detailed parameter explanations, making it insufficient for reliable 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. It briefly describes site_url as 'the URL of the site' and settings as 'move configuration', but fails to explain the structure of settings (Date, MoveScope, MoveType, SourceUrl, TargetUrl) or the self parameter. This superficial treatment is insufficient for correct invocation.

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

    Purpose5/5

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

    The description clearly states 'Submit a site move request.' using a specific verb and resource. It effectively distinguishes from sibling tools like get_site_moves, which is a read operation, and other tools unrelated to site moves.

    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?

    The description provides no guidance on when to use this tool versus alternatives, such as get_site_moves for retrieving existing moves. No conditions, prerequisites, or exclusions are mentioned, leaving the agent without contextual decision support.

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

  • Behavior2/5

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

    No annotations are present, so the description must convey behavioral traits. It only notes that the tool raises BingWebmasterError on failure, but omits side effects, permissions, rate limits, or return value details.

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

    Conciseness4/5

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

    Concise and follows a clear structure: one-line intro, bullet-like list of args, and error note. No unnecessary words.

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

    Completeness2/5

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

    Despite having an output schema (not shown), the description lacks contextual completeness: no mention of prerequisites, impact on existing data, or what the response contains. For a 5-parameter mutation tool, more context is needed.

    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?

    Input schema has 0% description coverage, so the description's parameter explanations add basic meaning (e.g., 'The URL of the site'). The weight description is minimal but consistent with its enum; however, no format or constraints are detailed.

    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?

    Clearly states action (update) and resource (deep link weight) with a deprecation note. However, among siblings like get_deep_link and add_deep_link_block, it does not explicitly differentiate itself.

    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 on when to use this tool versus alternatives. The deprecation note hints at obsolescence but does not suggest a replacement or provide context for appropriate usage.

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

  • Behavior2/5

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

    No annotations are provided, so the description must carry the full burden. It states that the tool attempts verification and returns a boolean or raises an exception, but it does not disclose underlying behavior (e.g., network calls, idempotency, side effects). The 'self' parameter's role and potential authentication needs are not addressed.

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

    Conciseness4/5

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

    The description is concise and uses a clear docstring format with Args, Returns, Raises. It is front-loaded with the main purpose. However, it could be slightly more streamlined by omitting unnecessary structural elements.

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

    Completeness2/5

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

    The description lacks important context for a verification tool: it does not explain what verification entails, when it succeeds or fails, or relate it to other tools (e.g., add_site). With no annotations and limited parameter info, the description is insufficient for an agent to use the tool confidently.

    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?

    The schema has 0% description coverage. The description only explains 'site_url' (the URL to verify) but not 'self', which remains opaque. Given the low coverage, the description partially compensates but is incomplete.

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

    Purpose5/5

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

    The description clearly states the action: 'Attempt to verify ownership of a site.' It uses a specific verb and resource, and it distinguishes itself from siblings like add_site and remove_site. The inclusion of Args, Returns, and Raises further clarifies the purpose.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites (e.g., site must be added first), nor does it advise against use in certain scenarios. The required 'self' parameter is left unexplained, which could confuse an agent.

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

  • Behavior3/5

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

    The description discloses that a BingWebmasterError is raised if traffic information cannot be retrieved. However, it lacks details on whether the operation is read-only, required permissions, or any side effects. Annotations are absent, so the description carries the full burden but is incomplete.

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

    Conciseness4/5

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

    The description is concise, front-loaded with the main purpose, and uses a clear Args/Returns/Raises structure. One sentence could be removed (the Returns line is redundant given the output schema), but overall it is well-organized.

    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?

    The description covers basic functionality and error handling, but the missing 'self' parameter is a gap. With an output schema present, the return type explanation is acceptable. However, for a tool with three required parameters and no annotations, more context on parameter usage and behavior would improve completeness.

    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?

    The description explains site_url and url parameters but omits the required 'self' parameter entirely. Schema description coverage is 0%, so the description should compensate, but it fails to cover all parameters and provides no additional semantics like format or constraints.

    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 tool retrieves traffic details for a single page. The verb 'Get' and resource 'traffic_info' are specific. However, it does not differentiate from sibling tools like get_children_url_traffic_info or get_url_info, which could cause confusion.

    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. There is no mention of prerequisites, exclusions, or comparisons to sibling tools such as get_url_info or get_children_url_traffic_info.

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

  • Behavior2/5

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

    No annotations are provided, so the description must fully disclose behavior. It mentions potential errors (BingWebmasterError) and quota limitations, but does not indicate if the operation is destructive, what the return value is (despite an output schema existing), or whether it's idempotent. This is insufficient for a submission tool.

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

    Conciseness3/5

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

    The description is clear but includes an 'Args' section that is partially redundant with the schema. It could be more concise and front-loaded, with the core action stated first. Overall adequate but not optimized.

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

    Completeness2/5

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

    Given the tool has 3 parameters and an output schema, the description is incomplete. It does not explain the return value or the purpose of the 'self' parameter. The guidance about quota is helpful but insufficient for full understanding.

    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?

    The input schema has 0% description coverage, leaving parameters like 'self' undocumented. The description explains site_url and url, but fails to clarify the purpose of 'self', which is required. This partial coverage omits important semantics.

    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 'Submit a single URL for indexing,' which is a specific verb+resource. It distinguishes from sibling tools like submit_url_batch (batch submission) and fetch_url (fetching), but could be more explicit about the indexing process.

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

    Usage Guidelines4/5

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

    The description advises calling get_url_submission_quota to check limits before submitting, providing clear usage context. However, it does not explicitly state when not to use this tool or list alternatives.

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

  • Behavior2/5

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

    With no annotations, the full burden falls on the description. It does not disclose side effects (e.g., whether it overwrites existing roles), idempotency, rate limits, or authentication needs beyond listing parameters. The Raises section is generic.

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

    Conciseness4/5

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

    The description is concise, with a clear upfront action and a bulleted parameter list. The Raises section adds minimal value but is not verbose. Could be more efficient by integrating parameter descriptions into the main text.

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

    Completeness2/5

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

    Given the tool has 7 required parameters and no annotations, the description lacks critical context. It does not explain the 'self' field, the interaction between access levels, or the tool's behavior on failure. The existence of an output schema is not utilized.

    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?

    Schema coverage is 0%, so the description must compensate. It provides basic explanations for most parameters (e.g., 'The URL of your site'), but lacks depth and does not clarify the 'self' parameter or relationships between flags like is_administrator and is_read_only.

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

    Purpose5/5

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

    The description clearly states 'Delegate site access to a user', using a specific verb and resource. Among siblings like get_site_roles and remove_site_role, this tool is distinct as the creation/delegation operation.

    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?

    The description provides no guidance on when to use this tool versus alternatives (e.g., when to use get_site_roles or remove_site_role). There are no prerequisites, conditions, or usage scenarios mentioned.

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

  • Behavior2/5

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

    No annotations are provided, so the description must disclose behavioral traits. It only states it returns a list and can raise an error. It does not mention if it's read-only, requires authentication, or any side effects, leaving the behavior under-specified.

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

    Conciseness3/5

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

    The description is concise but incomplete: it documents only one of two parameters. The structure with Args, Returns, Raises is good but the missing 'self' parameter is a notable gap.

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

    Completeness2/5

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

    The tool has two required parameters and an output schema, but the description adds little beyond the schema. It does not explain what blocked URLs are, the format of settings, or how pagination works (if any). For a retrieval tool, more context is needed.

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

    Parameters1/5

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

    The input schema has two parameters (self, site_url), but the description only documents site_url. With 0% schema description coverage, the description should add meaning to the undocumented 'self' parameter, but it does not. This fails to help the agent understand parameter semantics.

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

    Purpose5/5

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

    The description clearly states the tool retrieves a list of blocked pages/directories for a site, using a specific verb+resource pattern. This distinguishes it from siblings like add_blocked_url, remove_blocked_url, and get_connected_pages.

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

    Usage Guidelines4/5

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

    The description provides the required argument 'site_url' and indicates it returns a list of BlockedUrl objects. While it doesn't explicitly state when to use this tool versus alternatives, the context of retrieving blocked URLs is clear.

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

  • Behavior2/5

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

    No annotations provided; description only mentions return type and potential error. Does not disclose side effects, permissions, or rate limits.

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

    Conciseness4/5

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

    Concise with structured Args, Returns, Raises. Front-loaded with purpose. Could be slightly more compact, but overall good.

    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?

    Output schema exists reducing need to explain returns, but missing explanation for 'self' parameter and context about when quota information is needed.

    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 coverage is 0%; description only explains 'site_url' briefly. The 'self' parameter is undocumented, leaving confusion about its purpose.

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

    Purpose5/5

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

    Clearly states the action 'get information' and the resource 'content submission quota and usage'. Differentiates from sibling tools like get_url_submission_quota by focusing on content submission specifically.

    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 on when to use this tool vs alternatives like get_url_submission_quota. Does not mention prerequisites or context.

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

  • 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. It does not disclose whether the operation is read-only, destructive, requires authentication, or has rate limits. It only mentions that it returns statistics and raises BingWebmasterError, which is insufficient for a tool with no annotations.

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

    Conciseness4/5

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

    The description is well-structured with Args, Returns, and Raises sections. It is relatively concise, though the purpose sentence could be more explicit. The docstring format adds clarity.

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

    Completeness2/5

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

    Given the tool has four parameters, no annotations, and an output schema exists but is not shown, the description is incomplete. It lacks behavioral details (e.g., idempotency, permissions), error conditions beyond a generic exception, and any explanation of the 'self' parameter.

    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?

    Schema description coverage is 0%, so the description must compensate. It describes three of four parameters (site_url, query, page) in the Args section, but does not describe 'self,' which is a required parameter. The descriptions are minimal and add little beyond the parameter names.

    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 the resource 'detailed statistics for a specific query and page combination.' It distinguishes the tool from siblings like 'get_query_page_stats' by implying more detail, but does not explicitly differentiate, so not a 5.

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

    Usage Guidelines3/5

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

    The description implies usage for retrieving detailed statistics for a specific query and page but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites.

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

  • Behavior2/5

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

    With no annotations, the description must disclose behavioral traits. It only states the operation is a 'get' (implied read-only) but does not mention authentication requirements, rate limits, or any side effects. Minimal transparency.

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

    Conciseness4/5

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

    The description is short and front-loaded with the core purpose. The docstring format is structured but the omission of 'self' reduces efficiency. Still, no fluff present.

    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 simplicity and presence of an output schema, the description covers the return type and error handling. However, the unexplained 'self' parameter and lack of differentiation from siblings make it only 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 explain all parameters. It explains 'site_url' as 'The URL of the site' but completely omits 'self', which is required. This leaves a critical gap.

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

    Purpose5/5

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

    The description clearly states 'Get information about URL submission quota and usage', a specific verb and resource. The docstring details arguments and return type, distinguishing it from siblings like get_content_submission_quota.

    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 (e.g., get_content_submission_quota, submit_url). The description only states the tool's function without context for selection.

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

  • Behavior2/5

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

    Without annotations, the description carries the burden of behavioral disclosure, but it only lists parameters and a raised exception, omitting side effects, reversibility, or authorization needs.

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

    Conciseness4/5

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

    The description is succinct and structured with an 'Args:' list, but it could be more compact and still include missing details.

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

    Completeness2/5

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

    Given no annotations, six parameters, and an output schema, the description lacks behavioral context, prerequisites, and the 'self' parameter explanation, making it incomplete.

    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?

    Schema coverage is 0%, and the description adds human-readable names for enum fields (e.g., 'Page or Directory') but misses the 'self' parameter and does not map enum integer values.

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

    Purpose5/5

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

    The description clearly states the action ('Remove a blocked URL from a site'), specifying the verb and resource, and distinguishes from sibling tools like 'add_blocked_url'.

    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, nor are prerequisites or conditions for use mentioned (e.g., the URL must already be blocked).

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

  • Behavior2/5

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

    The description indicates the tool is destructive (removing a parameter) and can raise an error, but it does not disclose side effects, authentication needs, or any safety information. With no annotations, the burden was higher but unfulfilled.

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

    Conciseness4/5

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

    The description is short and front-loaded with the primary action. However, the Args section could be better integrated into a narrative, and the Raises clause is minimal. The structure is acceptable but not optimal.

    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?

    The description covers the basic action and two parameters, but misses 'self' and provides no output or behavioral context. Although an output schema exists, the description still feels incomplete for a 3-parameter tool.

    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%. The description only repeats parameter names for 'site_url' and 'query_parameter' without adding meaning beyond the schema. The 'self' parameter is entirely omitted, leaving it unexplained.

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

    Purpose5/5

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

    The description clearly states the action ('Remove') and resource ('URL normalization parameter') and context ('from a site'), effectively distinguishing this tool from siblings like 'add_query_parameter' and 'enable_disable_query_parameter'.

    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?

    The description provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites or complementary tools. It lacks any explicit when-to-use or when-not-to-use context.

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

  • Behavior2/5

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

    With no annotations, the description carries full responsibility for behavioral disclosure. It mentions that a BingWebmasterError is raised if the page cannot be connected, but it does not specify whether the operation is idempotent, what happens if the connection already exists, or any side effects. The agent is left uninformed about critical behavioral traits beyond the error case.

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

    Conciseness4/5

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

    The description is concise, with a one-line purpose followed by clear parameter and error documentation. The structure is logical, though the Args and Raises sections could be integrated more naturally. No superfluous text is present.

    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 existence of an output schema (so return values are covered) and the parameter count, the description covers purpose and two of three parameters. However, it lacks usage guidelines and behavioral transparency, leaving the tool only partially documented. More context on when to use and what to expect would improve completeness.

    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 provides explicit explanations for site_url and master_url in the Args section, adding meaning beyond the schema (which has 0% description coverage). However, the 'self' parameter is left undocumented. With 3 params and 2 described, the coverage is partial but helpful.

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

    Purpose5/5

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

    The description clearly states the action ('Add a page') and the resource ('which has a link to your website'). It distinguishes this tool from siblings like add_site (which adds a site) and get_connected_pages (which retrieves). The verb 'add' and resource 'connected page' are specific and unambiguous.

    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?

    The description provides no guidance on when to use this tool versus alternatives. For example, it does not mention prerequisites (e.g., the site must already exist), nor does it contrast with similar tools like add_site or get_connected_pages. The absence of usage context leaves the agent to infer usage from the tool name alone.

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

  • Behavior2/5

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

    No annotations are provided, so the description should disclose behavioral traits like idempotency, side effects, or permission requirements. It only mentions that an error is raised if the update fails, leaving many behavioral aspects undocumented.

    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 exceptionally concise, using a structured Args/Raises format. Every sentence adds value with no redundancy, and the key action is front-loaded.

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

    Completeness2/5

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

    Given the presence of related sibling tools and the existence of an output schema, the description fails to contextualize when to use this tool (e.g., vs. add_query_parameter) and does not describe the return value. Behavioral completeness is low, especially with no annotations.

    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 explains three of the four required parameters (site_url, query_parameter, is_enabled) with basic semantics. However, the `self` parameter is completely omitted, and details like the format of query_parameter (e.g., without '?') are missing. With 0% schema coverage, this partial explanation improves understanding but has notable gaps.

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

    Purpose5/5

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

    The description clearly states the action (enable or disable) and the resource (a URL normalization parameter for a site). It distinguishes from siblings like add_query_parameter and remove_query_parameter by implying modification of an existing parameter's state.

    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?

    The description provides no guidance on when to use this tool versus alternatives such as add_query_parameter or remove_query_parameter. It does not mention prerequisites (e.g., the parameter must already exist) or contextual conditions for usage.

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

  • 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. It mentions raising BingWebmasterError on failure but does not disclose authorization needs, rate limits, or what happens if the query returns no pages. Behavioral insights are minimal.

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

    Conciseness4/5

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

    The description is concise with distinct sections for args, returns, and raises. It is efficient and well-structured, though it sacrifices some detail for brevity.

    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 that there is an output schema likely documenting return types, the description adequately addresses returns. However, it lacks usage context and behavioral details, making it incomplete for full agent decision-making.

    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 explains two of the three parameters (site_url and query) with brief, clear meanings. However, the 'self' parameter is left unexplained, and the schema has 0% description coverage, so the description partially compensates but not fully.

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

    Purpose5/5

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

    The description clearly states the tool retrieves 'detailed traffic statistics for pages matching a specific query', with a specific verb and resource. This distinguishes it from siblings like get_page_stats (likely all pages) and get_query_stats (maybe overall stats).

    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?

    The description does not provide any guidance on when to use this tool versus alternatives. With a long list of sibling tools, explicit differentiation would be helpful, but none is given.

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

  • Behavior2/5

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

    With no annotations, the description should carry the full burden of behavioral disclosure. It only states it removes a feed and raises an error if removal fails, but lacks details on idempotency, permission requirements, or side effects.

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

    Conciseness4/5

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

    The description is concise with separate Args and Raises sections, making it easy to parse. However, it could be more structured (e.g., using bullet points) and the self parameter could be included.

    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?

    For a simple removal tool with no annotations and an output schema, the description is adequate but misses the self parameter and lacks behavioral details like idempotency or authentication requirements. It could be more complete.

    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 adds meaning for two of three parameters (site_url and feed_url) with one-line explanations, but the required 'self' parameter is left undocumented. Since schema description coverage is 0%, the description partially compensates but is incomplete.

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

    Purpose5/5

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

    The description clearly states 'Remove a previously submitted sitemap feed', which is a specific verb ('remove') and resource ('sitemap feed'). This distinguishes it from siblings like submit_feed and get_feeds.

    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 on when to use or when not to use this tool versus alternatives. It does not mention prerequisites or scenarios where removal might fail.

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

  • Behavior2/5

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

    No annotations provided, so description carries full burden. It states the action and raises an error if removal fails, but omits other behaviors like authentication needs, side effects, or what happens if the block is absent.

    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?

    Extremely concise: one sentence for the action plus a minimal args section. Every word serves a purpose with no fluff.

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

    Completeness2/5

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

    Lacks important context: output schema is present but not described, prerequisites are missing, and the 'self' parameter is unexplained. For a removal tool with a sibling that adds, more completeness is needed.

    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?

    With 0% schema coverage, description adds meaning for 'site_url' and 'url', clarifying their roles. However, the required parameter 'self' is not mentioned, leaving a gap.

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

    Purpose5/5

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

    The description starts with a clear action 'Remove a page preview block,' specifying exactly what the tool does. It clearly distinguishes from siblings like 'add_page_preview_block' and 'get_active_page_preview_blocks'.

    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 on when to use this tool versus alternatives. It does not mention prerequisites, idempotency, or scenarios like when the block does not exist.

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

  • Behavior2/5

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

    With no annotations provided, the description must disclose behavioral traits. It mentions an error case (BingWebmasterError) but does not describe side effects, whether the operation is destructive, rate limits, or what happens to existing content. The parameter descriptions are mechanical and lack behavioral context.

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

    Conciseness4/5

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

    The description is a single paragraph with a clear first sentence and an Args list. It is efficient with no redundant text, though the Args section could be integrated with the schema for brevity.

    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 complexity (6 required parameters, no schema descriptions, output schema exists), the description covers parameter formats and error handling but lacks context about submission consequences, quota usage, or how it relates to other submission tools. The output schema exists but is not referenced.

    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?

    Schema description coverage is 0%, so the description must compensate. It provides examples and encoding details for most parameters (e.g., base64 for http_message, device targeting values for dynamic_serving). However, the required 'self' parameter is entirely omitted from the description, creating a gap.

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

    Purpose5/5

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

    The description clearly states 'Submit content for a specific URL,' specifying the action and resource. The parameter list (http_message, structured_data, dynamic_serving) distinguishes it from sibling tools like submit_url and submit_url_batch, which likely handle URL-only submissions.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It does not mention context, exclusions, or prerequisites, leaving the agent to infer usage without explicit direction.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries full burden. It implies read-only behavior through 'Retrieve', but does not disclose auth needs, rate limits, or potential side effects.

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

    Conciseness4/5

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

    The description is short and structured into Args, Returns, Raises. It is efficient, though the Raises line is somewhat redundant but still useful.

    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 there is an output schema, return values are not needed in description. However, the missing explanation for 'self' parameter and lack of usage context (e.g., prerequisites) leaves gaps.

    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 description must compensate. It explains 'site_url' as 'The URL of the site', but fails to describe the required 'self' parameter, which remains unexplained.

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

    Purpose5/5

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

    The description clearly states the verb 'Retrieve' and the resource 'crawl settings' for a specific site. It distinguishes from the sibling tool 'save_crawl_settings' which is the write counterpart.

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

    Usage Guidelines3/5

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

    The description implies usage for reading crawl settings via 'Retrieve', but does not explicitly state when to use this tool over alternatives, nor provides exclusions or prerequisites.

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

  • Behavior2/5

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

    No annotations are provided, so the description must fully disclose behavior. It only states that the tool retrieves feed details and may raise a BingWebmasterError, but fails to mention any authorization needs, data mutation absence, or other behavioral traits.

    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 concise and well-structured with a clear one-line purpose followed by Args, Returns, and Raises sections. Every sentence is necessary and front-loaded.

    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?

    The tool has an output schema (List[Feed]) and the description mentions the return type, which is adequate. However, the unexplained 'self' parameter and lack of prerequisites (e.g., site must be added) leave gaps for a complete understanding.

    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 adds meaning for 'site_url' and 'feed_url' (both explained in the docstring), but omits 'self', one of three required parameters. With 0% schema description coverage, the description partially compensates but leaves a gap.

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

    Purpose5/5

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

    The description clearly states 'Get detailed information about a specific feed,' using a specific verb and resource. It distinguishes from sibling tools like 'get_feeds' (which likely lists feeds) and other get_* tools focused on URLs or sites.

    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_feeds' or 'get_url_info'. The description lacks any when-to-use or when-not-to-use instructions.

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

  • Behavior3/5

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

    The description mentions that the tool returns a list of SiteMoveSettings and can raise BingWebmasterError, adding some behavioral context. However, without annotations, it lacks details on permissions, rate limits, or side effects. The read-only nature is implied but not explicitly stated.

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

    Conciseness4/5

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

    The description is fairly concise, using a structured docstring format with Args, Returns, Raises sections. The first sentence captures the purpose, but the structure is somewhat verbose for a simple tool.

    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?

    The tool has 2 parameters and an output schema exists, so the description need not detail return values. However, the missing explanation for the 'self' parameter and lack of usage context leave gaps. It is adequate but not complete.

    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. It only explains 'site_url' as 'The URL of the site' – minimal value beyond the parameter name. The 'self' parameter is not described at all, leaving the user guessing its purpose.

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

    Purpose5/5

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

    The description clearly states the action ('Get'), the resource ('site move information'), and the scope ('for a specific site'). This distinguishes it from sibling tools like 'submit_site_move' which handle submission.

    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. For example, it doesn't mention that this should be used after submitting a site move, or that it's complementary to 'submit_site_move'.

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

  • Behavior3/5

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

    No annotations are provided, so the description must disclose behavioral traits. It includes return type and error info but does not explicitly state read-only nature, side effects, or rate limits. The verb 'Retrieve' implies safety, but transparency could be improved.

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

    Conciseness4/5

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

    The description is concise with a clear one-liner purpose and structured docstring (Args, Returns, Raises). No unnecessary information, though it could be more compact.

    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?

    The tool is simple, and output schema exists, so return value details are partially covered. However, the description omits semantics of 'self' parameter and does not mention edge cases or behavior when settings are unavailable.

    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?

    Schema description coverage is 0%, so the description must compensate. It explains 'site_url' but ignores 'self' parameter entirely. Only partial compensation for one of two parameters.

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

    Purpose5/5

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

    The description explicitly states the verb 'Retrieve', the resource 'country/region settings', and the scope 'for a specific site', clearly distinguishing it from sibling tools like add/remove_country_region_settings.

    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?

    There is no guidance on when to use this tool versus alternatives, no prerequisites, conditions, or exclusions. It only describes the action without context.

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

  • Behavior2/5

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

    No annotations are provided, so the description must disclose behavioral traits. It only states the action and parameter defaults, but does not mention side effects, permissions, idempotency, or behavior when URL already blocked. The raise condition is minimal.

    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 compact docstring with a one-line summary, parameter list, and raise section. It is front-loaded and every sentence serves a purpose, with no wasted words.

    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 6-parameter complexity and presence of an output schema, the description covers purpose, parameters, and one error condition. However, it omits success output, prerequisites (e.g., site existence), and potential additional errors, making it slightly incomplete.

    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 adds meaning beyond the schema for most parameters (e.g., entity_type and request_type map integers to human-readable options, date default described). However, the required 'self' parameter is not explained, leaving a gap despite 0% schema description coverage.

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

    Purpose5/5

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

    The description clearly states 'Add a blocked URL to a site', which is a specific verb+resource pair. It distinguishes from siblings like 'remove_blocked_url' and 'get_blocked_urls'.

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

    Usage Guidelines3/5

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

    The description implicitly indicates when to use this tool (to block a URL) but lacks explicit guidance on when not to use or alternatives. The mention of a raise condition provides some context but no comparative advice.

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

  • Behavior3/5

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

    The description mentions raising BingWebmasterError on failure, which adds transparency beyond the schema. However, with no annotations, it lacks disclosure of side effects, permissions, or other behavioral traits.

    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 extremely concise with an efficient front-loaded purpose statement, followed by clear Args and Raises sections. Every sentence adds value.

    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 presence of an output schema and sibling tools, the description covers purpose, parameters, and error behavior adequately but misses usage context and the 'self' parameter. An agent could invoke the tool but might lack full understanding.

    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 explains site_url and feed_url with brief definitions, adding value beyond the schema's titles and types. However, the required 'self' parameter is not explained, and schema coverage is 0%, so the description only partially compensates.

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

    Purpose5/5

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

    The description clearly states 'Submit a sitemap feed for indexing' with a specific verb and resource, distinguishing it from sibling tools like 'get_feeds' and 'remove_feed'.

    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?

    The description provides no guidance on when to use this tool versus alternatives like 'submit_url' or 'submit_content', nor does it mention prerequisites or exclusions.

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

  • Behavior4/5

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

    The description discloses return type (List[Keyword] with impression data) and that it raises BingWebmasterError on failure. This is adequate behavioral insight given no annotations are present. It does not explicitly state read-only behavior, but the verb 'Get' implies a safe operation.

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

    Conciseness4/5

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

    The description is concise, with separate sections for Args, Returns, and Raises. Each sentence is necessary, though the Args list could be integrated more smoothly. No extraneous information is present.

    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?

    The description covers most input parameters and outputs, but misses the 'self' parameter and offers no usage differentiation from siblings. Given the output schema exists, return values are partially handled, but the missing parameter and lack of context for complex queries reduce completeness.

    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 provides parameter meanings for query, country, language, start_date, and end_date in the Args block, adding value beyond the bare schema. However, it omits the required 'self' parameter entirely, leaving a gap in coverage. Schema description coverage is 0%, so the description partially compensates.

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

    Purpose5/5

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

    The description clearly states the tool gets keyword impressions for related keywords in a selected period, specifying the verb 'Get' and the resource 'related keywords'. It distinguishes from siblings like get_keyword (single keyword) and get_keyword_stats (statistics) by focusing on related keywords with impression data.

    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 such as get_keyword or get_keyword_stats. The description only explains what the tool does, without any when-to-use or when-not-to-use context, leaving the agent to infer appropriate usage.

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

  • Behavior3/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. It mentions the return type (List[QueryParameter]) and a possible exception (BingWebMasterError). However, it does not disclose any side effects, authentication needs, or rate limits. For a simple read operation this is acceptable, but more detail would improve transparency.

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

    Conciseness4/5

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

    The description is concise, with a clear front-loaded purpose and an Args section. It is not verbose and every sentence adds value, though it could be slightly more structured with a Returns section (though output schema exists).

    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 simple nature of the tool (2 parameters, returns a list) and the presence of an output schema, the description is mostly complete. However, the omission of the 'self' parameter and lack of guidance on when to use this tool versus related siblings leaves gaps.

    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?

    The description only explains the 'site_url' parameter as 'The URL of the site'. The 'self' parameter is not mentioned at all. With 0% schema description coverage, the description should compensate by explaining both parameters, but it fails to do so.

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

    Purpose5/5

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

    The description clearly states the tool's purpose: 'Get a list of URL normalization parameters for a site.' It uses a specific verb ('get') and resource ('URL normalization parameters'), and distinguishes itself from sibling tools like add_query_parameter and remove_query_parameter.

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

    Usage Guidelines4/5

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

    The description provides clear context for when to use the tool (retrieve existing URL parameters for normalization), but does not explicitly state when not to use it or mention alternative tools. The sibling tool names imply alternatives, but the description could be more direct.

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

  • Behavior4/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. It states that it returns a list of URLs with crawl issues and raises an error. However, it does not detail side effects or safety (though read-only is implied). It adds value by describing the purpose and return type.

    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 concise, front-loaded with the purpose, and includes structured sections for args, returns, and raises. Every sentence adds value, no fluff.

    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?

    The tool has 2 parameters (one undocumented), an output schema exists, and there are many sibling tools. The description partially covers the purpose but misses parameter documentation for 'self' and lacks differentiation from siblings. Sufficient but not complete.

    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?

    The input schema has two required parameters: 'self' and 'site_url'. The description only explains 'site_url' and completely omits 'self'. With 0% schema description coverage, the description must compensate but fails to explain the 'self' parameter, leaving ambiguity.

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

    Purpose5/5

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

    The description clearly states 'Get a list of URLs with crawl issues for a specific site.' It uses a specific verb ('get') and resource ('crawl issues'), distinguishing it from siblings like get_crawl_stats or get_crawl_settings.

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

    Usage Guidelines3/5

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

    The description says it helps identify pages with crawl issues, implying when to use it, but does not explicitly state when not to use it or compare with alternatives among the many get_* functions. No when-to-use or when-not-to-use guidance.

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

  • Behavior4/5

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

    No annotations, but description covers batching, quota constraints, and raises exception. Lacks details on side effects or idempotency, but sufficient for basic understanding.

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

    Conciseness4/5

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

    Description is clear and structured with args and raises. Could be more concise, but effectively communicates key points.

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

    Completeness4/5

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

    Given output schema exists, description appropriately covers purpose, limitations, and suggests related tool. Adequate for agent decision-making.

    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?

    Explains site_url and url_list with brief descriptions, but the 'self' parameter is not described. Schema has titles, but overall coverage is minimal.

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

    Purpose5/5

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

    Description clearly states the action 'Submit multiple URLs for indexing' and the resource (URLs). It distinguishes from sibling 'submit_url' by specifying batch capability.

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

    Usage Guidelines5/5

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

    Explicitly mentions batch size limit of 500 and advises calling get_url_submission_quota to determine available quota. Provides clear context for usage.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-server-bwt MCP server

Copy to your README.md:

Score Badge

mcp-server-bwt MCP server

Copy to your README.md:

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/zizzfizzix/mcp-server-bwt'

If you have feedback or need assistance with the MCP directory API, please join our Discord server