Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation4/5

    Most tools have distinct purposes, but some overlap exists: 'capture_desktop_screenshot' and 'capture_page_screenshot' could be confused for similar screenshot tasks, and 'cdp_batch' and 'cdp_command' both handle CDP commands with subtle differences. The descriptions help clarify, but an agent might occasionally misselect between these pairs.

    Naming Consistency5/5

    All tool names follow a consistent snake_case verb_noun pattern, such as 'capture_desktop_screenshot', 'list_tabs', and 'open_new_tab'. This predictability makes it easy for agents to understand and use the tools without confusion from mixed naming conventions.

    Tool Count4/5

    With 20 tools, the count is slightly high but reasonable for a browser automation server that covers desktop interaction, CDP commands, and page management. It feels comprehensive without being overly bloated, though it borders on the upper limit of typical scoping.

    Completeness5/5

    The tool set provides complete coverage for browser automation, including navigation, tab management, input simulation, screenshot capture, CDP access, and diagnostics. There are no obvious gaps; agents can perform core workflows like opening URLs, interacting with pages, and debugging without dead ends.

  • Average 3.2/5 across 20 of 20 tools scored.

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

    • 0 of 1 community issues answered or closed in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • 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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It mentions passing 'the full JSON command object as text' which implies a specific input format, but doesn't describe what happens during execution (e.g., whether it's synchronous/asynchronous, error handling, performance characteristics, or what the CDP bridge actually does). For a tool that appears to execute browser commands, this is a significant gap in 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, efficient sentence that gets straight to the point. There's no wasted language or unnecessary elaboration. However, it could be slightly more structured by separating the core purpose from parameter guidance.

    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's an output schema (which means return values are documented elsewhere), the description doesn't need to explain return values. However, for a tool with 2 parameters (one completely undocumented), no annotations, and 0% schema description coverage, the description should do more to explain what CDP bridge is, what batch commands are available, and how this differs from 'cdp_command'. The current description is minimally adequate but leaves important gaps.

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

    Parameters3/5

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

    Schema description coverage is 0%, so the description must compensate. It explains that 'batch_json' should contain 'the full JSON command object as text', which adds meaningful context about the parameter's content and format. However, it doesn't explain what constitutes a valid JSON command object or provide examples. The 'session_id' parameter is not mentioned at all, leaving it completely undocumented.

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

    Purpose3/5

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

    The description states the tool 'Run a CDP bridge batch command', which provides a verb ('Run') and resource ('CDP bridge batch command'), but it's somewhat vague about what CDP bridge is and what types of batch commands are supported. It doesn't clearly differentiate from sibling tools like 'cdp_command', which appears to be a similar single-command tool.

    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 doesn't mention when to choose 'cdp_batch' over 'cdp_command' or other browser automation tools like 'execute_js' or 'scan_page'. There's no context about prerequisites or typical use cases.

    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 carries the full burden of behavioral disclosure. It mentions the actions but lacks critical details: it doesn't specify if this requires specific permissions, what the execution environment entails (e.g., sandboxing), potential side effects (e.g., page modifications), or error handling. For a tool that executes arbitrary code, this is a significant gap in safety and operational 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 concise and front-loaded, consisting of a single sentence that directly states the tool's dual capabilities. There's no wasted verbiage, and it efficiently communicates the core functions without unnecessary elaboration. However, the lack of detail limits its helpfulness despite the efficient structure.

    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 (executing arbitrary code with 3 parameters), no annotations, and 0% schema coverage, the description is incomplete. While an output schema exists, the description fails to address critical aspects like parameter meanings, usage scenarios, and behavioral risks. For a high-stakes tool like this, more context is needed to ensure safe and effective 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, but it provides no information about parameters. The three parameters ('script', 'session_id', 'no_monitor') are entirely undocumented in the description, leaving their purposes and formats ambiguous. The description doesn't explain what 'script' should contain, how 'session_id' relates to the context, or what 'no_monitor' controls.

    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's function: executing JavaScript in a page context or sending CDP bridge commands. It specifies the action ('execute arbitrary JS', 'send JSON CDP bridge commands') and the context ('current page context', 'through the page bridge'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'cdp_command' or 'scan_page', which may have overlapping functionality.

    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 mentions two capabilities but doesn't specify scenarios for choosing between executing JS or sending CDP commands, nor does it compare to siblings like 'cdp_command' for CDP interactions or 'scan_page' for page analysis. Without usage context, the agent must infer based on tool names 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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'the real mouse' which implies physical movement, but fails to describe critical behaviors like whether this interrupts user control, requires specific permissions, has visual effects, or what the output contains. For a tool that manipulates hardware input, this is a significant gap.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that gets straight to the point with zero wasted words. It's appropriately sized for the tool's complexity and front-loads the core functionality.

    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 tool with 6 parameters, 0% schema coverage, no annotations, and hardware interaction implications, the description is inadequate. While an output schema exists (which reduces the need to describe return values), the description doesn't address critical context like coordinate systems, timing behavior, or interaction effects that would help an agent use this tool 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?

    With 0% schema description coverage for all 6 parameters, the description provides no information about parameter meanings beyond what's implied by the action. It doesn't explain what x1/y1/x2/y2 represent (screen coordinates), what units duration uses (seconds implied by default 0.3), or what button options exist. The description fails to compensate for the complete lack of schema documentation.

    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 ('drag') and resource ('the real mouse') with specific directionality ('from one point to another'), which distinguishes it from sibling tools like mouse_click or mouse_move. However, it doesn't explicitly differentiate from potential drag-like operations in other tools, keeping it at 4 rather than 5.

    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 mouse_move or mouse_click, nor does it mention prerequisites or exclusions. It simply states what the tool does without contextual usage information.

    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 carries full burden for behavioral disclosure. It mentions the optional file save but lacks details on permissions needed, whether it's read-only or destructive, error handling, or output format beyond the schema. This leaves significant gaps for a tool that interacts with browser pages.

    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, efficient sentence that front-loads the core purpose. However, it could be more structured by separating the capture action from the optional save feature, and it lacks critical details that would justify additional length.

    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 with 0% schema coverage, no annotations, and an output schema present, the description is incomplete. It hints at CDP usage and file saving but omits parameter semantics, behavioral traits, and differentiation from siblings. The output schema reduces the need to describe return values, but other gaps remain significant.

    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 only mentions the 'save_path' parameter explicitly and implies CDP context via 'session_id' and 'tab_id', but doesn't explain parameter meanings, defaults, or interactions. This provides minimal value beyond the schema's property names, meeting the baseline for inadequate coverage.

    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 ('capture a screenshot') and the target ('current page/tab via CDP'), distinguishing it from sibling tools like 'capture_desktop_screenshot'. However, it doesn't explicitly differentiate from other CDP-based tools like 'cdp_command' or 'scan_page', which prevents a perfect score.

    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 'capture_desktop_screenshot' for desktop screenshots or 'cdp_command' for other CDP operations. It mentions the optional file save feature but doesn't clarify prerequisites or context for effective use.

    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 carries full burden for behavioral disclosure. While it mentions the tool calls CDP commands, it doesn't describe what happens on failure, whether it requires specific browser states, what permissions are needed, or what the response format looks like. For a tool that interacts with browser debugging protocols, this leaves significant behavioral unknowns.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that immediately communicates the core functionality. Every word earns its place, with no redundant information or unnecessary elaboration. It's appropriately sized for a tool with this level of complexity.

    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 complexity (CDP interaction with 4 parameters), complete lack of annotations, and 0% schema coverage, the description is insufficiently complete. While an output schema exists (which helps with return values), the description doesn't provide enough context about when to use this tool, parameter meanings, or behavioral characteristics for safe and effective 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?

    With 0% schema description coverage and 4 parameters (1 required), the description provides no parameter information beyond what's implied by the tool name. It doesn't explain what 'method' should contain (specific CDP method names), how 'params_json' should be formatted, what 'session_id' refers to, or when to use 'tab_id'. The description fails to compensate for the complete lack of schema documentation.

    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 ('Call a single Chrome DevTools Protocol command') and target ('on the current or specified tab'), providing a specific verb+resource combination. However, it doesn't explicitly distinguish this from sibling tools like 'cdp_batch' (which handles multiple commands) or 'execute_js' (which is JavaScript-specific rather than general CDP).

    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 minimal guidance - it mentions 'current or specified tab' which gives some context about tab targeting, but offers no explicit when-to-use advice, no comparison to alternatives like 'cdp_batch' for multiple commands, and no prerequisites or limitations. The agent must infer usage from the tool name and description 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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'real desktop' which provides some context about the execution environment, but fails to describe important behavioral aspects like whether this is a blocking operation, what happens if coordinates are invalid, or what the output contains. For a tool that interacts with the desktop UI, this is a significant gap.

    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 at just 7 words, front-loading the core functionality with zero wasted words. Every element ('Click', 'real desktop', 'screen coordinates') contributes essential information without 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?

    Given the tool's complexity (desktop interaction with 5 parameters), no annotations, and 0% schema coverage, the description is incomplete. However, the existence of an output schema means the description doesn't need to explain return values. The description provides the absolute minimum viable information but leaves critical gaps in parameter understanding and behavioral 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?

    With 0% schema description coverage and 5 parameters, the description provides no information about any parameters. It doesn't explain what 'x' and 'y' coordinates represent, what button options exist, what 'clicks' and 'interval' control, or their default values. The description fails to compensate for the complete lack of schema documentation.

    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 ('Click') and target ('on the real desktop at screen coordinates'), providing a specific verb+resource combination. However, it doesn't distinguish this from sibling tools like 'mouse_drag' or 'mouse_move', which would require explicit differentiation for a perfect score.

    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 'mouse_drag' or 'mouse_move'. There's no mention of prerequisites, context, or exclusions, leaving 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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the optional click behavior but lacks critical details: whether this simulates real keyboard events (vs. programmatic text insertion), what 'real keyboard' means in automation context, whether it respects focus/selection, what happens with special characters, or any rate limits. The description provides minimal behavioral context beyond the basic operation.

    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 perfectly concise at 10 words, front-loading the core functionality ('Type text via the real keyboard') followed by the optional enhancement ('optionally after clicking a field'). Every word earns its place with zero redundancy or unnecessary elaboration.

    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 this is an automation tool with 4 parameters, 0% schema coverage, no annotations, but with an output schema, the description is insufficiently complete. It doesn't explain the automation context, what 'real keyboard' means technically, coordinate systems for clicking, or typing behavior details. While the output schema may document return values, the description lacks critical context for proper tool selection and 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%, so the description must compensate for undocumented parameters. The description mentions 'optionally after clicking a field' which hints at the click_x/click_y parameters, but doesn't explain what 'interval' controls (typing speed/delay) or provide context about coordinate systems. With 4 parameters and 0% schema coverage, the description adds only marginal semantic value beyond what parameter names suggest.

    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's purpose: 'Type text via the real keyboard, optionally after clicking a field.' This specifies the verb ('type') and resource ('text'), and distinguishes it from keyboard shortcut tools like 'hotkey'. However, it doesn't explicitly differentiate from text-input alternatives like 'execute_js' for web page text entry.

    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 context with 'optionally after clicking a field', suggesting this tool is for text input in UI contexts. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'execute_js' for web page text manipulation or 'cdp_command' for browser automation. No exclusion criteria 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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the scope ('visible to the CDP bridge extension itself'), which adds some context about visibility constraints, but fails to describe key behaviors such as whether this is a read-only operation, what the output format includes (e.g., extension names, IDs, versions), or any rate limits. For a tool with no annotation coverage, this is insufficient.

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

    Conciseness5/5

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

    The description is a single, clear sentence that efficiently conveys the core purpose without unnecessary details. It is front-loaded with the main action and resource, making it easy for an agent to quickly understand the tool's function.

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

    Completeness3/5

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

    Given the tool has an output schema (which should document return values), the description doesn't need to explain outputs. However, with no annotations and low schema coverage for the single parameter, the description is incomplete—it lacks usage guidelines, behavioral details, and parameter explanations. For a simple listing tool, it's minimally adequate but has clear gaps.

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

    Parameters3/5

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

    The input schema has one parameter ('session_id') with 0% description coverage, and the tool description provides no information about parameters. Since there is only one parameter and schema coverage is low, the description does not compensate by explaining its purpose (e.g., what 'session_id' refers to or when it should be used). However, with zero parameters explained in the description, the baseline is 4, but the lack of any parameter context reduces it to 3.

    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 ('List') and resource ('Chrome extensions'), and specifies the scope ('visible to the CDP bridge extension itself'), which helps distinguish it from generic extension listing tools. However, it doesn't explicitly differentiate from sibling tools like 'list_tabs' or 'get_setup_status', which might also involve listing operations in the browser context.

    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 doesn't mention prerequisites, such as needing the CDP bridge extension to be active, or compare it to sibling tools like 'list_tabs' for tab management. This leaves the agent without context for tool 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 provided, the description carries the full burden of behavioral disclosure. It mentions moving 'the real mouse cursor' which implies physical movement, but doesn't cover important aspects like whether this requires specific permissions, what happens if coordinates are out of bounds, or if there are any side effects. The description is minimal and lacks behavioral details.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It's appropriately sized and front-loaded with the essential information.

    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's an output schema (which means return values are documented elsewhere), the description covers the basic action. However, for a tool that physically moves a mouse cursor with 3 parameters and no annotations, the description should provide more context about behavior and usage. It's minimally adequate but has clear gaps.

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

    Parameters3/5

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

    The description mentions 'screen coordinates' which relates to the x and y parameters, but doesn't explain what these coordinates represent or the units. With 0% schema description coverage and 3 parameters (x, y, duration), the description provides only basic context without compensating for the schema's lack of descriptions. The baseline is appropriate given the schema coverage.

    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 ('Move') and target ('the real mouse cursor to screen coordinates'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'mouse_click' or 'mouse_drag' which are related mouse operations, so it doesn't reach the highest score.

    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 'mouse_click' or 'mouse_drag', nor does it mention prerequisites or context for usage. It simply states what the tool does without any usage 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 provided, the description carries full burden for behavioral disclosure. It mentions 'real-browser JS navigation' which hints at implementation but doesn't cover critical aspects like whether navigation blocks execution, error handling, permission requirements, or side effects. For a navigation tool with zero annotation coverage, this leaves significant gaps.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that front-loads the core functionality ('Navigate the current tab to a URL') and adds technical context ('using real-browser JS navigation') without unnecessary words. Every element serves a purpose.

    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 moderate complexity (navigation with 3 parameters), no annotations, and the presence of an output schema, the description is minimally adequate. It states the core action but lacks details about parameters, error conditions, and behavioral traits that would be needed for full contextual 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?

    Schema description coverage is 0%, so the description must compensate for undocumented parameters. It doesn't mention any parameters at all, failing to explain 'url' requirements, 'session_id' purpose, or 'timeout' behavior. However, with only 3 parameters and a clear primary action, the baseline remains at 3 despite the lack of parameter explanation.

    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 ('Navigate') and target ('current tab to a URL'), with specific implementation details ('using real-browser JS navigation') that distinguish it from simple URL opening. However, it doesn't explicitly differentiate from sibling tools like 'open_new_tab' or 'switch_tab', which prevents a perfect score.

    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 'open_new_tab' or 'switch_tab', nor does it mention prerequisites or constraints. It states what the tool does but offers no context for selection among the many browser automation 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 provided, so the description carries full burden. It mentions the action ('Set the active browser tab') but lacks details on behavior: e.g., what happens if multiple tabs match the URL substring, whether it fails if no match is found, if it requires specific browser state, or what the output includes. This is a mutation tool with zero annotation coverage, leaving significant gaps.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that front-loads the core purpose ('Set the active browser tab') and specifies the input criteria. There is no wasted verbiage, making it highly concise and well-structured for quick understanding.

    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 2 parameters with 0% schema coverage, no annotations, and an output schema (which handles return values), the description is moderately complete. It covers the basic purpose but lacks behavioral details (e.g., error handling, matching logic) and parameter semantics, leaving room for improvement despite the output schema mitigating some 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 the description must compensate. It mentions parameters ('session id or URL substring') but doesn't explain their semantics: e.g., what a session_id is, how URL substring matching works (case-sensitive, partial match), or that at least one parameter should be provided. With 2 parameters and no schema descriptions, this adds minimal value beyond naming them.

    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 ('Set the active browser tab') and the target resource ('browser tab'), with specific criteria ('by session id or URL substring'). It distinguishes from siblings like 'list_tabs' (which lists tabs) and 'open_new_tab' (which creates new tabs), but doesn't explicitly contrast with 'open_url' (which might also activate tabs).

    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 when needing to switch tabs based on session_id or url_pattern, but doesn't specify when to choose this over alternatives like 'open_url' (which might open and activate a URL) or 'list_tabs' (for tab discovery). No explicit when-not-to-use or prerequisite guidance is provided.

    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 carries full burden for behavioral disclosure. It states what the tool does but lacks critical details: whether this requires specific permissions, how 'connected' is defined (e.g., active vs. all tabs), what the output format includes (though an output schema exists), or any rate limits. This leaves significant gaps for a tool that interacts with browser sessions.

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

    Conciseness5/5

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

    The description is a single, clear sentence with no wasted words. It's front-loaded with the core action and resource, making it highly efficient and easy to parse, which is ideal 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?

    Given the tool's low complexity (0 parameters) and the presence of an output schema (which handles return values), the description is minimally adequate. However, with no annotations and behavioral gaps (e.g., missing context on 'connected' or permissions), it doesn't fully prepare the agent for real-world use, keeping it at a baseline level.

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

    Parameters4/5

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

    The tool has 0 parameters, and the schema description coverage is 100%, so there are no parameters to document. The description doesn't need to add parameter semantics, but it correctly doesn't mislead about inputs. A baseline of 4 is appropriate as it avoids unnecessary parameter discussion for a zero-param tool.

    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 ('List') and the resource ('currently connected browser tabs/sessions'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'switch_tab' or 'open_new_tab' that also involve tab operations, which prevents a perfect score.

    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 doesn't mention prerequisites (e.g., needing an active browser session), exclusions, or comparisons to similar tools like 'switch_tab' for tab navigation, leaving the agent to infer usage 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 full burden. It mentions the method ('mss') and a use case, but lacks details on permissions needed, file format, error handling, or whether it overwrites existing files. This is inadequate for a tool that captures screenshots, which may involve system access and file operations.

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

    Conciseness5/5

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

    The description is a single, efficient sentence with no wasted words. It is front-loaded with the core action and includes necessary context without 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?

    Given the tool's complexity (screenshot capture with system interaction), no annotations, and an output schema present, the description is minimal. It covers purpose and method but lacks behavioral details and parameter guidance. The output schema may help, but the description itself is incomplete for safe and effective use.

    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%, with one parameter 'save_path' undocumented. The description does not mention parameters at all, failing to compensate for the coverage gap. However, with only one optional parameter, the baseline is slightly higher, but it adds no value 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?

    The description clearly states the action ('Take a desktop screenshot') and resource ('whole screen'), specifying the method ('using mss') and a use case ('physical-input verification'). It distinguishes from sibling 'capture_page_screenshot' by focusing on desktop rather than web page, though not explicitly named.

    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 'physical-input verification,' suggesting a context, but does not explicitly state when to use this tool versus alternatives like 'capture_page_screenshot' or other input methods. No exclusions 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 carries the full burden. It states what the tool does but lacks behavioral details such as permissions required (e.g., cookie access), rate limits, error handling, or what 'via the Chrome extension bridge' entails operationally. For a tool interacting with browser data, this gap is significant as it doesn't disclose security or performance implications.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that front-loads the core purpose ('Get cookies') and adds necessary context ('for the current page or specified tab via the Chrome extension bridge'). Every word earns its place with no redundancy or fluff, making it easy to parse quickly.

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

    Completeness3/5

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

    Given 2 parameters with 0% schema coverage, no annotations, but an output schema exists, the description is moderately complete. It covers the basic purpose and context but lacks details on parameter usage, behavioral traits, and integration with the Chrome extension. The output schema likely handles return values, so the description doesn't need to explain those, but it should do more to compensate for the sparse structured data.

    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 mentions 'current page or specified tab', hinting at the 'tab_id' parameter, and 'via the Chrome extension bridge' might relate to 'session_id', but it doesn't explain what these parameters mean (e.g., 'session_id' for extension sessions, 'tab_id' for browser tabs) or their formats. The description adds minimal value beyond the schema's titles, leaving parameters largely 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 action ('Get cookies') and the resource ('current page or specified tab'), specifying it works 'via the Chrome extension bridge'. It distinguishes from siblings like 'capture_page_screenshot' or 'type_text' by focusing on cookie retrieval. However, it doesn't explicitly differentiate from tools like 'cdp_command' that might also interact with Chrome DevTools Protocol for 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 Guidelines3/5

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

    The description implies usage when cookies are needed from a browser context, with parameters for session or tab targeting. It doesn't provide explicit guidance on when to use this versus alternatives (e.g., 'cdp_command' for more complex Chrome interactions) or prerequisites like needing the Chrome extension active. The context is clear but lacks detailed exclusions or comparisons.

    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 mentions the action happens 'via the real keyboard' which suggests system-level interaction, but doesn't disclose important behavioral traits like whether this requires specific permissions, if it's synchronous/asynchronous, potential side effects on other applications, or error conditions. The description is minimal and lacks operational context.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that front-loads the core functionality. Every word earns its place - 'Send a hotkey chord' establishes the action, examples clarify the format, and 'via the real keyboard' provides important context about the implementation level. No wasted words or redundant information.

    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 1 parameter with 0% schema coverage and no annotations, the description is insufficiently complete. While an output schema exists (which reduces need to describe return values), the tool performs a system-level action with potential side effects, yet the description lacks crucial information about permissions, platform compatibility, error behavior, and the scope of what 'real keyboard' means in practice.

    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?

    With 0% schema description coverage (parameter 'keys_csv' has no description in schema), the description must compensate but provides minimal parameter guidance. It gives examples of format ('command,l' or 'ctrl,shift,p') which helps understand the CSV format, but doesn't explain what constitutes valid keys, modifier combinations, platform differences, or error handling for invalid input.

    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 specific action ('Send a hotkey chord') and resource ('via the real keyboard'), with concrete examples ('command,l' or 'ctrl,shift,p') that make the purpose unambiguous. It distinguishes this tool from siblings like 'type_text' or 'mouse_click' by focusing on keyboard shortcuts rather than text input or mouse actions.

    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 keyboard shortcuts but doesn't explicitly state when to use this tool versus alternatives like 'type_text' for regular text input or 'mouse_click' for mouse interactions. No guidance is provided about when not to use it or specific scenarios where it's preferred over other input methods.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates this is a read operation ('return') for diagnostic purposes, which implies it's likely non-destructive and safe. However, it lacks details on potential side effects, error conditions, or performance characteristics (e.g., rate limits), leaving gaps in transparency.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that front-loads key information ('return extension path, bridge ports, and connection status') and includes the purpose ('for setup/diagnostics'). There is no wasted text, making it highly concise and well-structured.

    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 the tool's simplicity (0 parameters, no annotations, but with an output schema), the description is reasonably complete. It specifies what data is returned and the diagnostic context. However, it could benefit from more detail on output format or error handling, though the presence of an output schema mitigates this gap.

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

    Parameters4/5

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

    The tool has 0 parameters, and the input schema has 100% description coverage (though empty). The description doesn't need to explain parameters, so it appropriately focuses on output semantics. A baseline of 4 is applied since no parameters are present, and the description adds value by hinting at what information is returned.

    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's purpose with specific verbs ('return') and resources ('extension path, bridge ports, and connection status'), and specifies the context ('for setup/diagnostics'). However, it doesn't explicitly differentiate from sibling tools like 'extension_path' or 'list_extensions' that might provide related information, preventing a perfect score.

    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 context ('for setup/diagnostics'), suggesting when this tool might be appropriate, but it doesn't provide explicit guidance on when to use it versus alternatives like 'extension_path' or 'list_extensions', nor does it specify exclusions or prerequisites. This leaves some ambiguity for the agent.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively communicates key behaviors: it's a read operation ('Read'), it preserves authentication state, it simplifies HTML/text, and it operates on the 'current page' context. However, it doesn't mention potential limitations like rate limits, error conditions, or what 'simplified' specifically entails.

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

    Conciseness5/5

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

    The description is a single, well-constructed sentence that efficiently communicates the core functionality. Every word earns its place: 'Read' establishes the action, 'current page' specifies the target, 'simplified HTML/text' describes the output format, and 'preserving login state from the real browser' adds crucial behavioral context.

    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 tool with 6 parameters (0% schema coverage) and no annotations, the description does an adequate job explaining the core purpose and key behavior. However, it completely ignores parameter semantics, and while an output schema exists, the description doesn't hint at return format or structure. The presence of many sibling tools suggests this operates in a browser automation context that could use more explicit positioning.

    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?

    With 0% schema description coverage for 6 parameters, the description provides no information about any parameters. It doesn't mention session_id for session management, text_only for format control, cutlist for content filtering, maxchars for output limits, instruction for processing guidance, or extra_js for JavaScript injection. The description fails to compensate for the complete lack of schema documentation.

    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 ('Read'), resource ('current page'), and key behavioral characteristics ('simplified HTML/text', 'preserving login state from the real browser'). It distinguishes itself from screenshot siblings like capture_page_screenshot by focusing on content extraction rather than visual capture.

    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 context (when you need to extract page content while maintaining authentication state), but doesn't explicitly state when to use this versus alternatives like execute_js for JavaScript execution or get_cookies for cookie management. No specific exclusions 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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action but does not cover important traits such as whether the tool requires specific browser permissions, if it handles invalid URLs, or what happens on success/failure. This leaves significant gaps for a mutation tool.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that is front-loaded with the core action. It wastes no words and directly communicates the tool's function without unnecessary elaboration.

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

    Completeness3/5

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

    Given the tool's low complexity (one parameter) and the presence of an output schema, the description is minimally adequate. However, as a mutation tool with no annotations, it should ideally include more behavioral context, such as error handling or prerequisites, to be fully complete.

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

    Parameters4/5

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

    The description adds meaning by specifying that the 'url' parameter is used to open a new tab, which clarifies its purpose beyond the schema's basic type definition. With 0% schema description coverage and only one parameter, this compensation is adequate, though not exhaustive.

    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 ('Open') and the resource ('a new browser tab with the given URL'), making the purpose specific and unambiguous. It distinguishes from sibling tools like 'open_url' by specifying it opens a new tab rather than navigating the current tab.

    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 implies usage context (opening a new tab for a URL), but does not explicitly state when to use this tool versus alternatives like 'open_url' or 'switch_tab'. It provides clear intent but lacks explicit guidance on exclusions or comparisons.

    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?

    With no annotations provided, the description carries full burden. It clearly indicates this is a read-only operation (getting a path) and specifies the output type (absolute path). However, it doesn't disclose potential behavioral aspects like error conditions, permissions needed, or whether the path always exists.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that immediately states the tool's purpose without unnecessary words. It's perfectly front-loaded with the core action and includes just enough context about the use case.

    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 the tool's simplicity (no parameters, has output schema), the description provides adequate context about what the tool does and why. However, it could be more complete by mentioning what happens if no extension directory exists or clarifying the exact output format beyond 'absolute path'.

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

    Parameters4/5

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

    The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, focusing instead on the tool's purpose and output.

    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 specific action ('Get absolute path') and resource ('unpacked Chrome extension directory'), with explicit purpose ('for manual installation'). It distinguishes from sibling tools like 'list_extensions' by focusing on path retrieval rather than enumeration.

    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 context ('for manual installation'), suggesting this tool is used when a user needs to locate the extension directory for installation purposes. However, it doesn't explicitly state when to use this versus alternatives like 'list_extensions' or provide clear exclusions.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a read-only reporting function (not a mutation), but doesn't disclose important behavioral aspects like refresh rate, coordinate system, units of measurement, or whether it requires specific permissions. The description adds basic context but lacks operational details.

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

    Conciseness5/5

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

    The description is a single, efficient sentence that immediately communicates the tool's purpose without any unnecessary words. It's perfectly front-loaded with the core functionality and contains zero redundant information or fluff.

    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 the tool's simplicity (0 parameters, no annotations, but has output schema), the description provides adequate context for understanding what information will be retrieved. The existence of an output schema means the description doesn't need to explain return values. However, for a reporting tool with no annotations, some additional behavioral context (like coordinate format or refresh behavior) would enhance completeness.

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

    Parameters4/5

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

    The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't waste space discussing nonexistent parameters, maintaining focus on what the tool actually does. This meets the baseline expectation for zero-parameter tools.

    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 with specific verbs ('Report') and resources ('current desktop mouse position and primary screen size'). It distinguishes itself from sibling tools like mouse_click or mouse_move by focusing on information retrieval rather than action execution.

    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 context (when you need mouse position and screen size information) but doesn't explicitly state when to use this tool versus alternatives. No guidance is provided about prerequisites, limitations, or specific scenarios where this tool is preferred over other methods.

    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

agent-browser-mcp MCP server

Copy to your README.md:

Score Badge

agent-browser-mcp 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/335234131/agent-browser-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server