Skip to main content
Glama

chrome-debug-mcp

License: MIT Rust chrome-debug-mcp MCP server

chrome-debug-mcp is an asynchronous Rust-based Model Context Protocol (MCP) server that allows AI agents and Large Language Models to natively control, automate, and debug Chromium-based browsers via the Chrome DevTools Protocol (CDP).

Using cdp-browser-lite underneath (which itself re-exports the cdp-lite client), this MCP server directly hooks into the browser avoiding heavy abstractions, enabling live-debugging sessions directly from your editor or chat-interface. Starting from v0.2.0, it can also manage the Chrome process lifecycle automatically.


✨ Features

This server natively implements a suite of tools categorized by CDP domains and native process management:

πŸ›‘οΈ Privacy & Security

  • Isolated Profiles (Default): Every time the MCP server launches Chrome, it creates a fresh, temporary user profile in your system's temporary directory. This profile is completely independent of your main browser profile, and it is removed when the browser stops β€” cookies, history, saved passwords, or session data from one session never bleed into the next.

  • Incognito-like Experience: No cookies, history, saved passwords, or session data from your personal accounts are shared with the managed instance by default.

  • Identity Protection: Even if an LLM has full control over the browser, it cannot access your logged-in sessions (e.g., Google, GitHub, banking) or impersonate you unless explicitly authorized.

  • User Profile Mode: Use the --user-profile flag to launch Chrome using your existing system profile. This is useful when you want the LLM to work within your active sessions (cookies, saved logins, etc.) without having to re-authenticate on every site. Use with caution as this provides the LLM access to your personal browser data.

    • ⚠️ Note on --user-profile: Due to Chrome's singleton architecture, if your browser is already open, it will delegate the request and fail to open the debugging port. You must either close all existing Chrome instances before starting the MCP, or start your browser manually with the --remote-debugging-port=9222 flag.

πŸš€ Chrome Instance & Tab Management

  • Multi-Instance Support: Spawns and controls multiple concurrent, independent Chrome processes on dynamic ports, each with its own isolated profile directory. Limit the number of instances using the --max-instances flag.

  • Instance Registry Tools: Use open_instance, list_instances, and close_instance to create, audit, and clean up additional instances. All existing tools accept an optional instance_id to route commands to the targeted browser.

  • Multi-Tab Support (New): Controls multiple concurrent tabs within a single Chrome instance, multiplexing the event streams and commands over a single WebSocket connection.

    • Auto-Discovery: Popups opened by target pages (e.g. window.open()) are automatically discovered, attached, and registered in the session's tab registry.

    • Cache Isolation: State caches (console messages, network traffic, debugger parsed scripts, WebMCP tools) are strictly isolated per tab so events do not bleed across targets.

  • Tab Registry Tools (New):

    • open_tab β€” Opens a new tab, optionally with a custom label and target URL. Returns JSON with the tab_id to reuse in other tools.

    • list_tabs β€” Lists all open and registered tabs for the instance as JSON (tab_id, label, target_id, url) plus the currently active tab. When no tabs are registered, tools fall back to the instance's default single-tab connection.

    • close_tab β€” Closes a specific tab by ID and cleans up its cache state. Returns the new active tab.

    • switch_tab β€” Changes the default active tab used when tab_id is omitted in tool calls, and optionally brings it to the foreground.

  • LLM-Friendly Interface: The lifecycle tools (open_instance, close_instance, open_tab, list_tabs, switch_tab, close_tab) return structured JSON so agents can chain calls without regex-parsing prose, and their descriptions follow the standard MCP template (side effects, prerequisites, returns, alternatives) so models rank them correctly.

  • Target Routing (New): All tab-scoped tools accept an optional tab_id parameter to target commands and retrieve cache state from a specific tab. If omitted, the default active tab is targeted.

  • Isolated Profiles: Launches Chrome using a fresh, temporary profile by default, ensuring it doesn't share cookies, passwords, or session data with your main browser.

  • User Profile Support: Optionally use --user-profile to leverage your existing browser sessions and cookies.

  • Dynamic Port Management: Automatically detects if the default port (9222) is in use.

    • If the port is occupied by a Chrome instance exposing CDP (user-started or another managed chrome-debug-mcp instance), it automatically attaches to it instead of spawning a new one.

    • Managed profiles are ephemeral, so there is no persistent per-port state; a second server sharing a port simply shares the same browser (and never kills an attached instance).

  • Docker & Headless Support: Full compatibility with Docker environments. Use the --headless flag to run Chrome without a GUI inside containers.

  • Remote/Host Connection: Use the --host argument to connect to a Chrome instance running on a different machine or the host machine (e.g., --host host.docker.internal from inside a container).

  • Optional Automation Infobar: Add the --enable-automation flag to explicitly show the native "Chrome is being controlled by automated test software" message. By default, this is disabled for stealthier interaction.

  • Proxy Support: restart_chrome now accepts an optional proxy_server argument to launch Chrome routing traffic through a proxy.

  • Auto-Launch: Automatically detects if Chrome is running on the specified port. If not, it spawns a new instance with the required flags.

  • restart_chrome: Restarts the managed Chrome instance.

  • Capability Presets: restart_chrome accepts an optional features array so a client can opt into extra browser capabilities per restart. It is a closed set β€” arbitrary Chrome flags are deliberately not accepted, to keep the tool from becoming a command line injection point:

    • WEB_MCP β€” enables the experimental WebMCP surface (--enable-features=WebMCPTesting, --categoryExperimentalWebmcp=true), for sites that expose tools to the browser.

    • WEBGL_SOFTWARE β€” forces SwiftShader software WebGL (--use-gl=angle, --use-angle=swiftshader, --enable-unsafe-swiftshader), for GPU-less environments such as containers.

    Presets apply to the instance started by that call; a later restart_chrome that omits features clears them, mirroring how proxy_server behaves.

  • stop_chrome: Shuts down the managed Chrome instance gracefully (SIGTERM/SIGINT with fallback to SIGKILL).

  • Robust Lifecycle: Fixed issues with dangling Chrome processes. Ephemeral profiles are deleted on stop, and cdp-browser-lite sweeps orphaned profile dirs left behind by abrupt kills; the "Chrome didn't shut down correctly" restore bubble is suppressed via launch flags and profile patching.

  • ⚠️ Behaviour change: Managed Chrome instances are now terminated when the MCP server process exits (including crashes). Previously a managed Chrome survived a server crash and was re-attached on restart; from now on it is killed. Attached (user-started) Chrome instances are never killed.

πŸ” Proxy Authentication

  • enable_proxy_auth: Automatically handles proxy authentication challenges by hooking into the Fetch CDP domain and supplying user-provided credentials (username & password).

  • Robustness Improvements: Now features a 30-second timeout for slower residential proxies, and defaults to only intercepting Document requests to prevent breaking background requests.

  • Pre-warming: Automatically navigates to a prewarm_url (defaults to http://api.ipify.org?format=json) to establish the proxy tunnel reliably before your main navigation task. You can optionally restrict the interception to a specific resource_type.

πŸ–±οΈ User Input

  • click_element: Simulates a native mouse click on a specific element by using a CSS selector. It calculates the center coordinates of the element and dispatches CDP mouse events directly.

  • fill_input: Fills an input field in the DOM with specified text. It focuses the element via CSS selector and then uses native CDP Input.insertText.

  • scroll: Scrolls the page by pixels, viewport heights (pages), or to a specific element. Essential for interacting with lazy-loaded content or infinite scrolling.

πŸ“‘ Network Inspection

  • get_network_logs: Retrieve intercepted network requests (REST/HTTP) and WebSocket frames.

  • Advanced Filtering: Filter logs by URL, resource type, WebSocket direction, or payload content.

  • Payload Inspection: Access full request/response headers, REST response bodies, and WebSocket frames.

  • Context Optimized: Optional "summary mode" to avoid flooding the LLM context window.

πŸͺ΅ Console & Errors

  • get_console_logs: Retrieve console logs from the browser. This includes console.log/warn/error calls, exceptions, and network errors. Crucial for troubleshooting page scripts and errors. Includes optional log level filtering and a clear flag to manage state efficiently.

⚑ Performance & Profiling

  • get_performance_metrics: Retrieve run-time performance metrics from the browser (e.g., JS heap size, DOM nodes, layout duration). Useful for getting a quick snapshot of the page's memory and computational overhead.

  • profile_page_performance: Record and analyze a performance trace of the page. It automatically calculates Core Web Vitals (FCP, LCP, DCL, Load) and identifies the top Long Tasks (main thread blocking operations). You can optionally reload the page with cache disabled to simulate a cold start.

🌐 Page & Runtime Control

  • capture_screenshot: Take a screenshot of the current page (or full page layout) and return it to the LLM client as a base64 encoded image block.

  • navigate: Navigate the active tab to a specific URL.

  • reload: Reload the current page.

  • inspect_dom: Fetch the entire HTML or a smart snippet around a search query.

    • Context Search: Search for specific text and get a configurable number of characters around it.

    • Token Efficiency: Drastically reduce context window usage for large pages.

  • evaluate_js: Run an arbitrary JavaScript expression globally on the page context.

🐞 Live Debugging & Execution Control

  • pause_on_load: Enables the debugger and triggers a page reload, pausing execution on the very first parsed script statement.

  • search_scripts: Search across all parsed script contexts for a query to accurately find lines and columns for breakpoints.

  • set_breakpoint: Set a precise JS breakpoint using script_id, url, or exact script_hash.

  • evaluate_on_call_frame: Evaluate a JavaScript expression directly inside the local scope of the currently paused debugger call frame.

  • step_over: Step over the next expression line.

  • resume: Unpause and resume the execution.

  • remove_breakpoint: Remove a previously set breakpoint.

🧩 WebMCP (page-exposed tools) Requires restarting Chrome with the WEB_MCP capability preset (see restart_chrome).

  • webmcp_list_tools: Lists the tools the current page exposes to the browser (name, description, inputSchema, frameId).

  • webmcp_invoke_tool: Invokes a page tool by name. input is a JSON object string (e.g. "{}" or "{\"product\":\"knot\"}"), matching the tool's inputSchema. Blocks up to 30s waiting for the result.

  • webmcp_get_invocation: Returns the status (Pending/Completed/Error/Canceled) and result of an invocation by invocationId β€” non-blocking.

  • webmcp_list_invocations: Lists all invocations in the session with their status, with optional status filter.

    ⚠️ Consent dialogs: page tools with side effects (clipboard writes, form submissions…) may show an on-page confirmation dialog that a human must click. In that case webmcp_invoke_tool returns a timeout error containing the invocationId β€” the invocation stays Pending (it is NOT canceled), so you can poll it with webmcp_get_invocation after the user approves or denies it.

πŸ§ͺ Stability & Reliability

  • Extensive Unit Testing: Comprehensive test suite ensuring the reliability of event processing and tool deserialization, particularly in the debugger domain.

  • Side-Effect Free Tests: All unit tests are designed to run in isolation, without launching real Chrome instances or modifying the filesystem.

  • Internal Refactoring: Decoupled core logic through traits and dependency injection to ensure long-term maintainability.


Related MCP server: chrome-devtools-mcp

βš™οΈ Configuration

By default, the MCP Server discovers the Chrome executable through cdp-browser-lite's cross-platform search: CHROME_PATH first (absolute priority), then common binaries in your PATH (google-chrome, google-chrome-stable, chromium, chromium-browser), then OS-specific locations (/Applications/Google Chrome.app/... on macOS, the chrome.exe install dir on Windows, /usr/bin/google-chrome, /opt/google/chrome/chrome and /snap/bin/chromium on Linux). This is a strict superset of the paths the server previously hardcoded.

Arguments:

  • --local: Restricts navigation to local addresses only (localhost, 127.0.0.1, 192.168.x.x, or *.local). Highly recommended for security.

  • --headless: Runs Chrome in headless mode (no GUI). Essential for Docker or server environments.

  • --user-profile: Use the default system user profile (sessions, cookies, etc.) instead of a fresh one. This is useful for avoiding repeated logins during research sessions.

  • --host: Specifies the target host for the Chrome instance (default: 127.0.0.1). Use host.docker.internal to connect to a host machine from a container.

  • --port: Specifies the remote debugging port (default: 9222).

  • --enable-automation: Enables the "controlled by automated software" infobar.

  • --max-instances: Limits the maximum number of concurrent Chrome instances (default: 8). Ignored if --user-profile is set.

Environment Variables:

  • CHROME_PATH: Explicitly define the path to the Chrome executable.


🐳 Docker & Headless Usage (v1.0.0)

chrome-debug-mcp is fully container-ready. This allows several powerful use cases for LLMs:

1. Cloud Deployment (via Glama)

The easiest way to use this server. Glama spawns a Docker container with Chrome pre-installed. The LLM gets immediate access to a browser in the cloud without any local setup.

2. Isolated Local Use

Run everything inside Docker to avoid installing Chrome or Rust on your host machine:

docker build -t chrome-mcp .
docker run -i --rm chrome-mcp --headless

3. Hybrid Mode (Container controlling Host)

The MCP server runs inside a secure Docker container but controls the Chrome instance on your actual desktop. This allows the LLM to assist you in your real browsing session:

  1. Start your local Chrome with: --remote-debugging-port=9222

    • Note: If you need proxy support in this mode, you must also start Chrome with the --proxy-server="http://your-proxy:port" flag.

  2. Run the container:

# On macOS/Windows
docker run -i --rm chrome-mcp --host host.docker.internal

πŸš€ Quick Start

The easiest way to install and run the MCP Server natively is via Rust's Cargo or by downloading the pre-compiled binaries. You do not need to start Chrome manually anymore, the MCP Server will automatically launch a visible instance of Chrome with the correct debugging flags.

1. Installation

Option A: Pre-compiled Binaries (Recommended) Go to the Releases page and download the native executable for your platform (macOS, Windows, Linux). We provide .msi installers for Windows and shell scripts for UNIX systems.

Option B: Install via Cargo

cargo install --git https://github.com/raultov/chrome-debug-mcp

Option C: Install via Shell Script (Unix)

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/raultov/chrome-debug-mcp/releases/latest/download/chrome-debug-mcp-installer.sh | sh

2. Configure your MCP Client

This server is fully tested and confirmed to work with Claude Code, agy, and codex. Configure your AI client to execute the server using any of the following modes.

Universal Configuration (JSON)

Most MCP clients (like Claude Code or any JSON-based config) use this structure. Here are the three main usage modes:

{
  "mcpServers": {
    "chrome-debug-mcp": {
      "command": "chrome-debug-mcp",
      "args": [],
      "env": {}
    },
    "chrome-docker": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "chrome-debug-mcp:v1.0.9", "--headless"]
    },
    "chrome-docker-hybrid": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--net=host",
        "chrome-debug-mcp:v1.0.9",
        "--host",
        "127.0.0.1"
      ]
    }
  }
}

Note: The chrome-docker-hybrid mode using --net=host is the recommended way on Linux to allow the container to access your local Chrome instance on 127.0.0.1.

Claude Code

To add and activate the server in Claude Code:

claude mcp add chrome-debug-mcp chrome-debug-mcp

3. Usage

Once connected, the AI agent will automatically handle starting Chrome when the first command is executed. The browser will remain visible so you can visually track the debugging process.

4. Agent Workflows & Multi-Instance Guidance

LLMs can operate this server using a few optimized patterns:

A. Isolated Multi-Instance Scenarios

When running automated browser sessions, you can launch separate Chrome processes to prevent cookie pollution or tab collision:

  1. Call open_instance with label: "user-session-1" or optional proxy server configs. This returns a unique instance_id (e.g. chrome-2).

  2. Pass the instance_id explicitly to downstream tools like navigate, evaluate_js, or webmcp_list_tools.

  3. Clear up resources using close_instance once finished.

B. Working with WebMCP

If you navigate to a page that supports WebMCP (e.g., https://www.knot.kz/#/agent-tools):

  1. Tools registered by the web page can be retrieved using webmcp_list_tools.

  2. By default, WEB_MCP is disabled for safety. If the tools list is empty, call restart_chrome with features: ["WEB_MCP"] and then reload.

  3. Invoke page tools using webmcp_invoke_tool, providing input JSON arguments. If a consent dialog pauses execution on the web page, the tool will timeout after 30 seconds but keep the invocation pending. You can poll its result using webmcp_get_invocation.


πŸ›  Compilation (From Source)

If you wish to compile from source:

git clone https://github.com/raultov/chrome-debug-mcp
cd chrome-debug-mcp
cargo build --release

The resulting binary will be located in target/release/chrome-debug-mcp. This project utilizes cargo-dist to handle cross-platform native distribution seamlessly via GitHub Actions.


πŸ“– Why this MCP Server?

Other integration servers like Puppeteer/Playwright wrappers are high-level, heavy, and typically fail at exposing real, interactive step-by-step debuggers. This MCP server uses raw CDP messages mapping them 1:1 to LLM tools, which allows intelligent agents to literally step over JS, read local scope variables natively, search inside V8 compiler contexts, and understand exactly why a script is crashing.


πŸ“œ License

This project is licensed under the MIT License. See the LICENSE file for more details.

Available Tools

35 tools
capture_screenshotA

Captures a visual representation of the current page viewport or entire page as a base64 encoded image ('full_page' defaults to false, capturing only the visible viewport; set true to capture the entire page). Side effects: none (read-only). Prerequisites: requires an active Chrome tab. Returns: base64 encoded image in specified format. Use this to visually verify UI state, layout, or rendering. Alternatives: 'inspect_dom' for raw HTML structure, 'get_performance_metrics' for rendering metrics.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput image format. Constraints: must be 'png', 'jpeg', or 'webp'. Interactions: 'quality' applies only to 'jpeg' and 'webp' formats. Defaults to: "png".
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
qualityNoCompression quality (0-100, higher=better quality). Constraints: integer between 0 and 100. Interactions: only applies when 'format' is 'jpeg' or 'webp'; ignored for 'png'. Defaults to: 100.
full_pageNoCapture the entire page beyond visible viewport. Constraints: boolean value. Interactions: if true, captures full page height; if false, captures only visible area. Defaults to: false.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/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 explicitly states 'Side effects: none (read-only)', the prerequisite of an active Chrome tab, and the return type (base64 encoded image). It also clarifies the full_page behavior. This is exceptionally transparent for a tool without annotations.

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 compact yet structured with clear labels (Side effects, Prerequisites, Returns, Alternatives). Every sentence earns its place, and there is no filler or repetition beyond a minor but acceptable mention of base64 in the first and Returns sentences.

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

Completeness5/5

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

This is a mutating? no, read-only tool with no output schema and no annotations. The description covers side effects, prerequisites, return value, common use case, and alternatives. For a screenshot tool with 5 optional parameters and no output schema, this is complete enough for an agent to call it correctly and interpret the result.

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 100% with each parameter already providing defaults, constraints, and interactions. The description adds no new parameter-level meaning beyond what the schema statesβ€”it only mirrors full_page behavior and mentions base64 output. Per the rubric, baseline 3 applies when the schema does the heavy lifting.

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 uses a specific verb ('Captures') and resource ('visual representation of the current page viewport or entire page'), and states the output as a base64 encoded image. It also explicitly names alternatives (inspect_dom, get_performance_metrics), making the tool's unique purpose clear.

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?

The description explicitly states when to use the tool ('Use this to visually verify UI state, layout, or rendering') and provides alternatives with their specific use cases ('inspect_dom for raw HTML structure', 'get_performance_metrics for rendering metrics'). It also notes the prerequisite of an active Chrome tab, giving clear operational context.

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

click_elementA

Triggers a native mouse click event on a DOM element identified by CSS selector, executing click handlers and form submissions. Side effects: may trigger page navigation, form submission, or modify DOM state. Prerequisites: element must exist and be visible (getBoundingClientRect must return valid coordinates). Returns: success confirmation with click coordinates. Use this to interact with buttons, links, checkboxes. Alternatives: 'fill_input' for text input, 'evaluate_js' for complex interactions.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
selectorYesCSS selector identifying the target element. Constraints: valid CSS selector string matching a single DOM element. Interactions: must resolve to exactly one visible element or operation fails. Defaults to: None (required).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/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 disclosure. It clearly lists side effects (page navigation, form submission, DOM state change), prerequisites (visibility), and the return value (click coordinates). This is comprehensive and does not contradict any structured data.

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 three purposeful sentences, front-loaded with the main action and side effects, with no filler or repetition. Every sentence contributes value.

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

Completeness5/5

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

The description covers purpose, side effects, prerequisites, alternatives, and return value. With no output schema, it explains what to expect (click coordinates). For a click tool, this is complete; nothing an agent needs to call it correctly is missing.

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 100%, so the baseline is 3. The description does not add new meaning to the parameters themselves; the only extra context, the selector mutability constraint, is already present in the schema.

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 a specific action ('triggers a native mouse click'), identifies the resource ('DOM element identified by CSS selector'), and notes the effects ('click handlers and form submissions'). It also distinguishes from siblings by naming alternatives like fill_input and evaluate_js.

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?

It explicitly lists the intended use cases (buttons, links, checkboxes) and names the alternative tools for text input and complex interactions, giving clear routing. It also mentions the prerequisite that the element must exist and be visible.

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

close_instanceA

Closes and stops the specified Chrome instance by id. Side effects: destructive - for secondary instances the Chrome process is terminated and the instance is fully removed from the registry; for 'default' the process is stopped but the registry entry is kept and the instance is re-created lazily on the next tool call. Returns: structured JSON with the instance_id and whether it was removed from the registry. Use this to free resources used by sessions created with 'open_instance'. Alternatives: 'stop_chrome' to stop an instance, 'close_tab' to close a single tab.

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idYesThe instance id to close. The 'default' instance cannot be removed: it is stopped and kept (re-created lazily on next use); all other instances are fully removed.

TDQS

A4.7/5.0
Behavior5/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 explicitly describes side effects (destructive for secondary instances, special handling for 'default') and the return format (structured JSON with instance_id and removal status). No behavioral aspect is left 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 thorough yet every sentence serves a purpose: core action, side effects, return value, usage context, and alternatives. It is front-loaded with the primary verb and resource, and the logical progression aids comprehension without any filler.

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

Completeness5/5

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

This tool has nuanced behavior (different outcomes for default vs. other instances) and no output schema, yet the description covers all necessary context: side effects, return structure, when to use it, and alternatives. An agent can invoke it correctly without needing additional information.

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 covers 100% of the single parameter, including the critical difference between 'default' and other instances. The description does not add parameter-level detail beyond the schema, so a baseline score of 3 is appropriate. The contextual reinforcement in the description is helpful but redundant with the schema.

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: 'Closes and stops the specified Chrome instance by id.' It also distinguishes itself from siblings by naming alternatives like stop_chrome and close_tab, so an agent can immediately understand what this tool does that others do not.

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?

The description provides explicit usage guidance: 'Use this to free resources used by sessions created with open_instance.' It also lists alternatives with their distinct purposes, making it unambiguous when to call this tool versus stop_chrome or close_tab.

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

close_tabA

Closes a specific tab by its registered Tab ID. Side effects: destructive - removes the tab from the registry and closes it in Chrome; if it was the active tab, another registered tab becomes active. Prerequisites: the tab must exist (see 'list_tabs'). Returns: structured JSON with the closed 'tab_id' and the new 'active_tab_id' (null when no tabs remain). Use this to clean up tabs you no longer need. Alternatives: 'close_instance' to stop a whole Chrome instance.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idYesThe Tab ID of the tab to close (e.g. 'tab-1').
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full disclosure burden. It discloses side effects (destructive, removes tab from registry, closes in Chrome, active tab handling) and return value structure. This is comprehensive and goes beyond minimal requirements.

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 structured logically: purpose, side effects, prerequisites, return, usage, alternative. It is appropriately sized with no redundant sentences, and the core purpose is front-loaded.

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

Completeness5/5

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

For a tool with two parameters (one required) and no output schema, the description explains the return value, side effects, and usage guidance sufficiently. It also integrates with sibling tool context, making it complete for an agent to invoke correctly.

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 100%, so the schema itself fully documents both parameters. The description adds some context (e.g., prerequisite of tab existing) but does not provide additional parameter-level semantics beyond what the schema already states, aligning with the baseline of 3.

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 a specific verb and resource ('Closes a specific tab by its registered Tab ID') and differentiates from sibling tools like 'close_instance' by explicitly naming it as an alternative. This makes the tool's purpose unmistakable.

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?

It clearly indicates when to use the tool ('Use this to clean up tabs you no longer need'), states prerequisites ('the tab must exist (see 'list_tabs')'), and names the alternative ('close_instance' to stop a whole Chrome instance). This explicitly guides selection among siblings.

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

enable_proxy_authA

Activates proxy authentication interception via Fetch domain, supplying credentials for authenticated proxies. Side effects: starts background event listener that auto-terminates after 30s inactivity; initiates pre-warming navigation. Auth requirements: username and password credentials required. Prerequisites: Chrome must be started with proxy-server flag. Rate limits: 30-second timeout per inactivity period. Returns: confirmation of proxy auth activation. Use this after 'restart_chrome' with proxy settings. Alternatives: manual proxy configuration in system settings.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
passwordYesProxy authentication password. Constraints: non-empty string. Interactions: paired with 'username'; sent to proxy server on auth challenge.
usernameYesProxy authentication username. Constraints: non-empty string. Interactions: paired with 'password'; sent to proxy server on auth challenge.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
prewarm_urlNoURL to navigate for proxy pre-warming. Constraints: valid URL (http/https). Interactions: navigated after auth setup to trigger proxy auth flow. Defaults to: "http://api.ipify.org?format=json".
resource_typeNoResource type to intercept. Constraints: 'Document', 'Image', 'Script', 'XHR', etc. (Chrome CDP resource types). Interactions: filters which request types trigger auth handling. Defaults to: "Document".

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description fully discloses behaviors: it starts a background event listener that auto-terminates after 30s of inactivity, initiates pre-warming navigation, requires credentials, and lists rate limits. This goes well beyond what annotations might cover, making the operational impact transparent.

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 structured with clear sections (side effects, auth, prerequisites, rate limits, returns) and front-loads the core action. While it is a bit longer than minimal, every sentence serves a purpose and it is well-organized for quick scanning.

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?

For a tool with no output schema, the description clearly states what it returns (confirmation) and covers prerequisites, side effects, and usage sequence. It could add error handling or edge cases but otherwise provides sufficient context for an agent to invoke correctly.

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 already provides detailed descriptions for all 6 parameters (coverage 100%), so the description's mention of pre-warming navigation and auth requirements adds only marginal context. It doesn't introduce new parameter-specific semantics beyond what the schema already explains, keeping the baseline at 3.

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 activates proxy authentication interception via the Fetch domain, which is a specific verb and resource. It differentiates itself from generic operations by specifying its role for authenticated proxies and mentioning manual proxy configuration as an alternative, making its purpose unambiguous.

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?

The description explicitly instructs to use this tool after 'restart_chrome' with proxy settings, and notes an alternative (manual proxy configuration). It also states prerequisites like requiring the proxy-server flag, giving agents clear when-to-use and 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.

evaluate_jsA

Executes arbitrary JavaScript code in the page context, returning evaluated results as JSON-serializable values. Side effects: may modify DOM, state, or trigger network requests. Prerequisites: requires an active Chrome tab; script context must allow execution. Returns: JSON-serialized return value (or error if promise rejected). Use this for dynamic inspection, DOM manipulation, complex interactions. Alternatives: 'inspect_dom' for read-only DOM queries, 'click_element' for UI interactions.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
expressionYesJavaScript code expression to execute. Constraints: valid JavaScript (single expression or IIFE). Interactions: automatically awaits promises; 'returnByValue' returns serialized results. Defaults to: None (required).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses side effects (may modify DOM, state, trigger network requests), prerequisites, return behavior (JSON-serializable values, error on promise rejection), and context requirements. This is comprehensive, though it omits details like potential CSP restrictions or permission scopes, leaving a small gap.

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 dense but every sentence earns its place: purpose, side effects, prerequisites, return, usage, and alternatives. It is well-structured and front-loaded with the core purpose, though the inclusion of both prerequisites and usage could be slightly streamlined without losing value.

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?

For a side-effect-capable tool with no annotations or output schema, the description covers all essential aspects: what it does, side effects, prerequisites, return format, error handling, and distinctions from siblings. It does not go into error specifics or permission nuances, but it is sufficient for an agent to invoke it correctly in most scenarios.

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 coverage is 100%, with each parameter documented. The description adds minimal extra meaning: it mentions that promises are awaited, but the schema already states this. It does not elaborate on tab_id or instance_id beyond what the schema provides, so the baseline 3 applies as the description relies on the schema for 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's action β€” "Executes arbitrary JavaScript code in the page context" β€” with a specific resource (JavaScript) and context (page). It immediately distinguishes its purpose from read-only inspection and UI interaction by naming alternatives, ensuring an agent can identify its niche.

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?

The description provides explicit guidance: "Use this for dynamic inspection, DOM manipulation, complex interactions" and lists concrete alternatives ('inspect_dom' for read-only queries, 'click_element' for UI interactions). It also states prerequisites (active Chrome tab, script context must allow execution), giving clear when-to-use and when-not-to-use conditions.

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

evaluate_on_call_frameA

Evaluates JavaScript expressions within the scope of a paused call frame, accessing local variables and call stack. Side effects: read-only by default; can modify state if expression includes mutations. Prerequisites: requires debugger to be paused at a breakpoint with active call frame. Returns: expression result with type and value. Use this to inspect variables and call stack during debugging. Alternatives: 'evaluate_js' for global scope evaluation, 'step_over' to advance without evaluation.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
expressionYesJavaScript expression to evaluate in call frame scope. Constraints: valid JavaScript accessing local/closure variables. Interactions: requires active paused debugger session; has access to function parameters and local variables. Defaults to: None (required).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.5/5.0
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 and handles it well: it discloses side effects ('read-only by default; can modify state if expression includes mutations') and prerequisites. It could go further (e.g., error behavior, impact on debugger state) but is transparent about the key 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.

Conciseness4/5

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

The description is efficiently structured: purpose, side effects, prerequisites, return info, and alternatives are each covered in one sentence without repetition. Though slightly long, every sentence adds value and the key information is front-loaded.

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 moderate complexity, the description covers purpose, side effects, prerequisites, return type, and alternatives. Without an output schema, it explains what the result contains ('type and value'). It doesn't elaborate on error messages or handling, but the essential information for correct invocation is present.

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?

Schema coverage is 100%, so parameters are well-documented. The description adds semantic context that the schema lacks, such as 'in call frame scope' and access to local/closure variables, clarifying what the expression can reference and the evaluation context. This goes beyond the baseline.

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 a specific verb ('Evaluates') and resource ('JavaScript expressions within the scope of a paused call frame') and distinguishes itself from siblings like 'evaluate_js' and 'step_over'. It also gives a concrete use case ('inspect variables and call stack during debugging'), making its purpose unmistakable.

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 the prerequisite ('requires debugger to be paused at a breakpoint with active call frame') and names alternatives with reasoning ('evaluate_js' for global scope, 'step_over' to advance without evaluation). This provides clear when-to-use and 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.

fill_inputA

Focuses an input field via CSS selector and inserts text using native input simulation, triggering input/change events. Side effects: modifies DOM input value; triggers input/change event handlers. Prerequisites: element must exist, be visible, and be an input/textarea or contenteditable element. Returns: success confirmation. Use this to populate form fields, search boxes, text areas. Alternatives: 'evaluate_js' for direct value assignment without events, 'click_element' to focus manually.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesText content to insert. Constraints: any string (special chars escaped automatically). Interactions: replaces any existing text after focus; triggers input/change events. Defaults to: None (required).
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
selectorYesCSS selector identifying the input element. Constraints: valid CSS selector matching an input/textarea/contenteditable element. Interactions: element must be focusable and writable. Defaults to: None (required).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and meets it. It discloses side effects (modifies DOM value, triggers input/change events), prerequisites (element exists, visible, input/textarea/contenteditable), and return type (success confirmation). This is thorough behavioral disclosure.

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 well structured and efficient: opening action, side effects, prerequisites, return, usage, alternatives. Every sentence provides distinct value with no redundancy or fluff.

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

Completeness5/5

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

For a 4-parameter tool with no output schema, the description fully covers what the tool does, when to use it, behavioral side effects, prerequisites, and return value. It is complete enough for an agent to select and invoke it correctly without ambiguity.

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 100% and each parameter has a detailed description already. The tool description adds only general context ('CSS selector', 'input/textarea/contenteditable') already present in the schema. Baseline 3 is appropriate since the schema handles 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?

States a specific verb ('focuses', 'inserts text') and resource ('input field via CSS selector'), and explains the native input simulation with event triggering. It distinguishes itself from siblings by naming evaluate_js and click_element as alternatives.

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 states when to use: 'Use this to populate form fields, search boxes, text areas.' It also gives clear alternatives and their distinguishing conditions: evaluate_js for direct value assignment without events, click_element to focus manually.

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

get_console_logsA

Retrieves cached console messages including log, warning, error, info levels and uncaught exceptions. Side effects: when 'clear' is true the cached console messages are emptied after being returned. Prerequisites: requires an active Chrome tab. Returns: JSON array of console messages with timestamp, level, and text. Use this to debug script errors, monitor page health, inspect exception traces. Alternatives: browser DevTools Console, error logging services.

ParametersJSON Schema
NameRequiredDescriptionDefault
clearNoClear console cache after returning logs. Constraints: boolean. Interactions: when true, subsequent calls only return new messages. Defaults to: false.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
level_filterNoFilter logs by severity level (case-insensitive). Constraints: 'error', 'warning', 'info', 'log', or similar CDP log level. Interactions: when provided, returns only matching level; empty returns all. Defaults to: None (no filtering).

TDQS

A4.3/5.0
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 openly states the side effect of 'clear' (emptying cache after return), the prerequisite, and the return format. It does not mention potential errors or failure modes, but it sufficiently discloses the critical behaviors an agent needs to know. The absence of annotations makes this transparency valuable.

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 well-structured and front-loaded with the primary purpose. It flows logically through side effects, prerequisites, returns, usage, and alternatives. Every sentence contributes meaningful information, with no redundancy or fluff. It is concise and scannable.

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

Completeness5/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 (4 params, no output schema), the description covers all essential aspects: what it does, side effects, prerequisites, return format, and use cases. An agent can correctly invoke this tool based solely on the description and schema. There are no obvious gaps that would lead to misuse.

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 100%, so the baseline is 3. The description adds context about the 'clear' side effect, which clarifies its parameter's behavior, but does not elaborate on other parameters (tab_id, instance_id, level_filter) beyond what the schema already states. The added value is marginal, so 3 is appropriate.

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 'Retrieves' and the resource 'cached console messages', list specific log levels and exceptions. It distinguishes itself from sibling tools like get_network_logs by specifying console messages. The usage context ('debug script errors, monitor page health') further clarifies its purpose.

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 prerequisites ('requires an active Chrome tab') and explicit use cases, but does not explicitly state when not to use it or directly compare to sibling tools. It mentions external alternatives (DevTools Console, error logging services) but excludes no sibling tools, leaving some ambiguity about when to prefer this over get_network_logs or similar. However, the context is still clear.

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

get_custom_eventsA

EXPERIMENTAL: Retrieves unhandled CDP events from domains not covered by specialized listeners (network, console, etc.). Side effects: none (read-only cache access). Prerequisites: requires active Chrome connection with send_cdp_command or custom domain listeners active. Returns: JSON array of custom events with method, parameters, and timestamp. Use this to see Target, Debugger, or other domain events. Alternatives: domain-specific listeners (get_network_logs, get_console_logs).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitYesMaximum number of events to return. Constraints: positive integer (0 = unlimited, clamped to cache size). Interactions: limits result set size. Defaults to: 100.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
filter_methodNoFilter events by CDP method name (case-sensitive). Constraints: string matching format 'Domain.eventName'. Interactions: when omitted, returns all events. Defaults to: None (no filtering).

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description correctly bears the full burden. It discloses 'Side effects: none (read-only cache access)', notes the 'EXPERIMENTAL' status, and explains the return format. It could additionally mention behavior on empty results or error conditions, but for a read-only cache tool, the provided transparency is comprehensive.

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 compact, front-loaded with the experimental warning and core purpose, then covers side effects, prerequisites, return format, use cases, and alternatives. Every sentence adds value without redundancy.

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

Completeness5/5

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

Despite having no output schema and no annotations, the description covers purpose, usage, side effects, prerequisites, return structure, and alternatives. For a read-only tool with clear schema documentation, this is complete enough for an agent to decide when and how to use it correctly.

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 describes all parameters with constraints, defaults, and interactions (100% coverage). The description adds no additional parameter-specific semantics beyond the schema, so the baseline of 3 is appropriate.

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 'Retrieves unhandled CDP events from domains not covered by specialized listeners', specifying the verb, resource, and scope. It explicitly contrasts with siblings like get_network_logs and get_console_logs, making the tool's purpose unambiguous and distinct.

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?

It provides explicit usage guidance: 'Use this to see Target, Debugger, or other domain events' and names alternatives, including specific sibling tools. It also mentions prerequisites (active Chrome connection with send_cdp_command or custom domain listeners), giving clear conditions for when to use the tool.

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

get_network_logsA

Retrieves intercepted HTTP/REST requests and WebSocket frames from network activity cache with filtering. Side effects: when 'clear' is true the cached requests and WebSocket frames are emptied after being returned. Prerequisites: requires active Chrome tab with network monitoring enabled. Returns: JSON array of requests/WebSocket frames with optional full details ('include_details' defaults to true; set false for summary only). Rate limits: none. Use this to audit API calls, debug network issues, inspect WebSocket traffic. Alternatives: browser DevTools Network tab, HAR file export.

ParametersJSON Schema
NameRequiredDescriptionDefault
clearNoClear network cache after returning logs. Constraints: boolean. Interactions: when true, subsequent calls return only new traffic. Defaults to: false.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
url_filterNoPartial URL match (case-insensitive). Constraints: non-empty string. Interactions: filters both REST and WebSocket URLs; empty string disables filtering. Defaults to: None (no URL filtering).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
type_filterNoTraffic type to include. Constraints: 'rest', 'websocket', or 'both' (case-insensitive). Interactions: limits results to specified type. Defaults to: "both".
include_detailsNoInclude full request/response details. Constraints: boolean. Interactions: when false, returns summary only (URL, method, status); when true, includes headers, bodies. Defaults to: true.
ws_content_filterNoWebSocket payload substring match (case-insensitive). Constraints: non-empty string. Interactions: applies only when type_filter includes 'websocket'; filters by payload content. Defaults to: None (no content filtering).
ws_direction_filterNoWebSocket frame direction filter. Constraints: 'sent', 'received', or 'both'. Interactions: applies only when type_filter includes 'websocket'. Defaults to: "both".

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description carries the transparency burden and meets it well. It discloses the destructive side effect of 'clear', the prerequisite of an active Chrome tab with network monitoring enabled, the absence of rate limits, and the default return detail level. This is strong behavioral disclosure beyond the raw schema.

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 compact but information-dense, using labeled sections such as Side effects, Prerequisites, Returns, and Rate limits for scannability. The main capability is front-loaded and every sentence contributes useful information.

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?

For a complex 8-parameter tool with no annotations and no output schema, the description covers prerequisites, side effects, return shape, rate limits, use cases, and alternatives. It is slightly light on precise return-field structure, but it is complete enough for reliable invocation.

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 already documents all 8 parameters at 100% coverage with defaults, constraints, and interactions, so the baseline is 3. The description mostly restates the include_details default and clear behavior rather than adding new parameter-level meaning beyond what the schema provides.

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 opens with a specific verb ('Retrieves') and names the exact resource ('intercepted HTTP/REST requests and WebSocket frames from network activity cache with filtering'). It clearly distinguishes this from sibling log tools like get_console_logs and get_performance_metrics by focusing on network traffic.

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 explicit use cases ('audit API calls, debug network issues, inspect WebSocket traffic') and names alternatives (browser DevTools Network tab, HAR file export). It does not spell out when not to use the tool or directly compare with sibling tools, but the context is clear enough for an agent to select it appropriately.

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

get_performance_metricsA

Captures runtime performance metrics including JS heap size, DOM node count, and layout timing. Side effects: none (read-only snapshot). Prerequisites: requires an active Chrome tab. Returns: JSON object mapping metric names to numeric values (e.g., JSHeapUsedSize, LayoutCount). Use this to monitor memory usage, detect memory leaks, or profile performance. Alternatives: 'profile_page_performance' for detailed tracing, browser DevTools Performance tab.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description discloses key behavioral traits: it explicitly notes 'Side effects: none (read-only snapshot)' and 'Prerequisites: requires an active Chrome tab'. It also specifies the return format. This is strong coverage, though it doesn't mention what happens if no active tab exists or whether there are rate limits, which are minor gaps.

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 structured logically: purpose, side effects, prerequisites, returns, usage, alternatives. Each sentence adds value and information is front-loaded. It is slightly longer than necessary but remains efficient and scannable.

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

Completeness5/5

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

Given the tool's simplicity (2 optional parameters, read-only, returns JSON), the description is fully complete: it explains the return structure with examples, includes side-effects and prerequisites, and gives usage guidance. An agent can call this tool correctly without any further information.

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 100%, so the schema already fully documents both parameters (tab_id and instance_id). The description adds no additional nuance beyond the schema's existing explanations. With full schema coverage, the baseline of 3 is appropriate; the description does not need to compensate much.

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 captures runtime performance metrics (JS heap size, DOM node count, layout timing) and explicitly distinguishes it from 'profile_page_performance' which does detailed tracing. It identifies both the verb and resource precisely, making it unambiguous among siblings.

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?

It explicitly states when to use the tool ('monitor memory usage, detect memory leaks, or profile performance') and names the alternative ('profile_page_performance' for detailed tracing, plus browser DevTools Performance tab). This provides a clear decision pathway without needing to inspect other tool definitions.

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

inspect_domA

Retrieves the complete HTML document or a contextual snippet around a search query. Side effects: none (read-only). Prerequisites: requires an active Chrome tab with loaded DOM. Returns: full HTML or snippet with context markers. Use this to inspect page structure, find elements by text, or verify rendering. Alternatives: 'evaluate_js' for complex DOM queries, 'capture_screenshot' for visual verification.

ParametersJSON Schema
NameRequiredDescriptionDefault
afterNoCharacters to include after the match. Constraints: non-negative integer. Interactions: only applies if 'query' provided. Defaults to: 200.
queryNoText pattern to search for in the DOM (case-sensitive). Constraints: any string. Interactions: when provided, returns context snippet instead of full HTML. Defaults to: None (returns full HTML if omitted).
beforeNoCharacters to include before the match. Constraints: non-negative integer. Interactions: only applies if 'query' provided. Defaults to: 200.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.6/5.0
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 explicitly states side effects are none (read-only), prerequisites require an active Chrome tab with loaded DOM, and describes the return format as full HTML or snippet with context markers. This is strong coverage. It stops short of 5 because it omits potential failure cases (e.g., no match, invalid tab) or rate limits, but for a read-only inspection tool this is nearly complete.

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 three sentences with no extra fluff. The main purpose is front-loaded, followed by side effects, prerequisites, returns, usage, and alternatives. Every sentence earns its place, and the structure is logical and scannable.

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?

For a tool with 5 parameters, no output schema, and no annotations, this description covers the essential context: purpose, usage, safety (read-only), prerequisites, and return behavior. The mention of context markers gives a clue about the snippet format. It could be more explicit about error handling or edge cases (e.g., no match for query), but overall it is sufficiently complete for an agent to invoke it correctly.

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?

Schema coverage is 100%, so the schema already documents each parameter. The description adds value by clarifying the two operational modes: full HTML when query is omitted, and contextual snippet with markers when query is provided. This maps directly to the query, before, and after parameters and gives the agent a higher-level understanding. It does not duplicate parameter details but adds conceptual grouping.

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 the complete HTML document or a contextual snippet around a search query. It specifies the exact action (retrieves) and resource (HTML/snippet), and explicitly differentiates from alternatives by naming them (evaluate_js, capture_screenshot). This leaves no ambiguity about what inspect_dom does.

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?

The description gives explicit use cases: inspect page structure, find elements by text, verify rendering. It also names specific alternatives and the conditions that select them (complex DOM queries β†’ evaluate_js, visual verification β†’ capture_screenshot), providing clear when-to-use and 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.

list_instancesA

Lists all running or registered Chrome instances. Side effects: none (read-only registry snapshot). Returns: JSON array of instance descriptors with id, label, host, port, profile_dir, features and is_default. Use this to discover instance_ids before passing 'instance_id' to other tools. Alternatives: 'list_tabs' to enumerate tabs within an instance.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/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 discloses 'Side effects: none (read-only registry snapshot)' and specifies the return format as a JSON array with field names. This is transparent about behavior and output, exceeding the minimum for a tool without annotations.

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?

Two sentences with no wasted words. The purpose is front-loaded, followed by side effects, return format, usage guidance, and an alternative. Every sentence adds value.

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

Completeness5/5

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

For a simple list tool with no parameters and no output schema, the description is complete: it covers purpose, side effects, return format, and how to use it with other tools. An agent can confidently invoke this tool.

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?

Tool has zero parameters, so schema coverage is 100% (trivially). Baseline for 0 params is 4. The description doesn't discuss parameters, but none exist; it compensates by explaining output fields, which is outside 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 lists all running or registered Chrome instances, with a specific verb and resource. It also names an alternative (list_tabs) to differentiate scope, so an agent can distinguish it without opening schemas.

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 states when to use this tool ('discover instance_ids before passing instance_id to other tools') and names list_tabs as an alternative for a different scope. Provides clear usage context and exclusion.

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

list_tabsA

Lists all tabs currently open and registered in the specified Chrome instance. Side effects: none (read-only registry snapshot). Returns: structured JSON with 'active_tab_id', the current tab targeted by tools that omit 'tab_id', and a 'tabs' array of tab_id, label, target_id and url. When no tabs are registered, tools fall back to the instance's default single-tab connection and a 'note' explains it. Use this to discover Tab IDs before passing 'tab_id' to other tools. Alternatives: 'list_instances' to enumerate Chrome instances.

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.6/5.0
Behavior5/5

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

The description explicitly discloses side effects ('none (read-only registry snapshot)') and describes the fallback behavior when no tabs are registered, including the note in the response. With no annotations provided, this fully carries the behavioral transparency burden and exceeds it by explaining return structure and special cases.

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 structured with distinct sections (purpose, side effects, returns, fallback, usage, alternative) and front-loads the core purpose. It is slightly verbose but every sentence adds unique, relevant information, so no waste.

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

Completeness5/5

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

For a simple read-only tool with one optional parameter and no output schema, the description covers return format (active_tab_id, tabs array, note), side effects, fallback behavior, usage guidance, and alternatives. Nothing an agent needs to call it correctly is missing.

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 single parameter (instance_id) is already fully described in the schema (100% coverage), and the description adds no additional semantics beyond the schema's mention of omitting it for the default instance. It does tie the parameter to discovering Tab IDs, but that's purpose rather than parameter meaning, so a baseline 3 is appropriate.

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 a specific verb ('Lists'), resource ('all tabs'), and scope ('in the specified Chrome instance'), and explicitly distinguishes itself by noting it returns Tab IDs for use with other tools, making it unambiguous against siblings like list_instances and open_tab.

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?

It clearly states when to use the tool ('to discover Tab IDs before passing tab_id to other tools') and provides an explicit alternative ('list_instances' for enumerating instances), enabling proper routing without inference.

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

open_instanceA

Opens a new independent Chrome instance. Side effects: launches a separate Chrome process with its own profile directory and remote-debugging port. Prerequisites: rejected when the server runs in --user-profile mode (Chrome's singleton profile lock). Returns: structured JSON with 'instance_id' (pass it as the 'instance_id' argument of other tools), 'host', 'port' and 'profile_dir'. Use this to isolate browsing sessions, cookies, proxies or WebMCP contexts from one another. Alternatives: 'open_tab' for additional tabs within an existing instance. Parameters: 'features' accepts a closed set - 'WEB_MCP' (enables the experimental WebMCP surface for sites that expose tools to the browser) or 'WEBGL_SOFTWARE' (forces SwiftShader software WebGL for GPU-less environments); 'headless' defaults to false (prefer false so the user can see the browser).

ParametersJSON Schema
NameRequiredDescriptionDefault
labelNoOptional label to identify the instance. The label becomes the instance_id returned by this tool and accepted by the 'instance_id' argument of other tools. If omitted, a dynamic label is generated.
proxyNoOptional proxy server configuration.
featuresNoOptional feature presets (e.g. WEB_MCP, WEBGL_SOFTWARE).
headlessNoOptional headless mode. Encouraged to be set to false so that the user can see what happens with the browser. Defaults to false.

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations, the description fully discloses behavioral traits: launching a separate process, own profile directory, remote-debugging port, rejection in --user-profile mode, and the structured return value. It even explains the headless default rationale. This goes well beyond a basic summary.

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 moderately long but every sentence serves a distinct purpose: purpose, side effects, prerequisites, return value, usage, alternative, and parameter details are each addressed without redundancy. It is front-loaded with the core function and structured logically.

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

Completeness5/5

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

Given the tool's complexity (launching a process) and the absence of an output schema, the description provides all necessary context: return format with 'instance_id' being passed to other tools, side effects, prerequisites, and usage scenarios. It is complete for an agent to invoke correctly and interpret results.

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?

Schema coverage is 100%, so the baseline is 3. The description adds meaning beyond the schema by explaining the 'features' enum values ('WEB_MCP', 'WEBGL_SOFTWARE') and the rationale for headless defaulting to false. Label and proxy are not explained in the description, but the schema already covers their basic intent, so the extra explanation for two parameters justifies a 4.

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 uses a specific verb-resource pair: 'Opens a new independent Chrome instance.' It clearly differentiates from siblings by explicitly mentioning 'open_tab' as an alternative for tabs within an existing instance, making the tool's unique role unambiguous.

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?

Provides explicit guidance on when to use this tool: 'Use this to isolate browsing sessions, cookies, proxies or WebMCP contexts from one another.' It also names the alternative tool ('open_tab') and conditions for rejection ('--user-profile' mode), leaving no 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.

open_tabA

Opens a new tab in the specified Chrome instance. Side effects: creates a browser tab and registers it under a generated Tab ID; the tab stays open until closed with 'close_tab'. Prerequisites: none - the instance is launched lazily if not running yet. Returns: structured JSON with 'tab_id' (use it as the 'tab_id' argument of other tools), 'target_id' (raw CDP target id), 'url' and 'label'. Use this to work with several pages in parallel while keeping their CDP state isolated per tab. Alternatives: 'navigate' to load content in the active tab, 'list_tabs' to enumerate already open tabs.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoTarget URL to navigate to in the new tab. Defaults to 'about:blank'.
labelNoOptional unique label to identify the tab. Rejected if another tab in this instance already uses it.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.9/5.0
Behavior5/5

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

Since no annotations are provided, the description fully discloses behavior: it mentions side effects (creates a tab, registers ID, stays open until close_tab), lazy instance launch, and the exact return structure (tab_id, target_id, url, label). This goes beyond the schema and gives the agent a complete mental model.

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, front-loading the purpose and then detailing side effects, return values, usage, and alternatives. It is slightly verbose but every sentence contributes meaningful information without redundancy, earning a solid 4.

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

Completeness5/5

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

Given the tool's complexity (3 optional params, no output schema, 30+ siblings), the description is complete: it covers what, why, when, side effects, return format, and differentiation from related tools. An agent has everything needed to call it correctly.

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

Parameters5/5

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

The schema already covers all parameters at 100%, but the description adds value: url defaults to 'about:blank', label must be unique, and instance_id derives from open_instance/list_instances with an 'omit for default' guidance. This enriches the agent's understanding beyond raw schema types.

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 function: 'Opens a new tab in the specified Chrome instance.' It names the specific resource (tab) and the action (open), and differentiates itself from siblings by explicitly mentioning 'navigate' and 'list_tabs' as alternatives with different purposes.

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?

The description explicitly states when to use this tool: 'Use this to work with several pages in parallel while keeping their CDP state isolated per tab.' It also provides clear alternatives: 'navigate' for altering the active tab and 'list_tabs' for enumerating existing tabs, giving an agent precise routing guidance.

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

pause_on_loadA

Enables the debugger and injects a breakpoint at the first statement of any script loaded after reloading the page. Side effects: reloads the current page (destructive of unsaved state). Prerequisites: requires an active Chrome tab. Returns: confirmation of debugger enablement and page reload. Use this to debug script execution from the page load. Alternatives: 'set_breakpoint' for targeting specific scripts/lines, 'pause_on_exceptions' for exception-based pausing.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/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 explicitly discloses the destructive side effect ('reloads the current page (destructive of unsaved state)'), prerequisites, and the return value. This is more than sufficient for an agent to understand the tool's behavior and risks.

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 well-organized into distinct clauses: purpose, side effects, prerequisites, return, usage, and alternatives. Every sentence provides essential information without redundancy, and the primary purpose is front-loaded. It is efficient despite covering multiple aspects.

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

Completeness5/5

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

Given there is no output schema, the description compensates by stating the return value ('confirmation of debugger enablement and page reload'). It covers prerequisites, side effects, usage, and alternatives, leaving no critical operational detail missing. For a tool with only optional parameters and clear behavior, this is 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?

Schema description coverage is 100%, meaning both parameters (tab_id and instance_id) are already fully described in the schema. The description adds no additional parameter-specific meaning, so it meets the baseline expectation but does not exceed it.

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: 'Enables the debugger and injects a breakpoint at the first statement of any script loaded after reloading the page.' It also distinguishes itself from siblings by explicitly naming alternatives, so an agent can immediately tell it apart from set_breakpoint and pause_on_exceptions.

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?

It explicitly states when to use the tool ('Use this to debug script execution from the page load.') and provides alternative tools with their different purposes ('set_breakpoint' for targeting specific scripts/lines, 'pause_on_exceptions' for exception-based pausing). It also mentions the prerequisite of an active Chrome tab, giving complete usage context.

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

profile_page_performanceA

Records a performance trace of page execution, calculating Core Web Vitals (FCP, LCP, DCL, Load) and identifying Long Tasks (>50ms blocking). Side effects: may temporarily disable cache ('disable_cache' defaults to false); impacts page memory/CPU. Prerequisites: requires an active Chrome tab; trace recording uses background bandwidth. Returns: JSON with vitals, blocking time, and top 5 long tasks. Use this to optimize performance, identify bottlenecks, measure cold starts. Alternatives: browser DevTools Performance tab, real user monitoring (RUM).

ParametersJSON Schema
NameRequiredDescriptionDefault
actionNoAction to trigger during tracing. Constraints: 'none' or 'reload'. Interactions: 'reload' restarts page recording from initial load (useful with disable_cache=true). Defaults to: "none".
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
duration_msNoRecording duration in milliseconds. Constraints: integer between 500 and 15000. Interactions: longer duration captures more data; use 3000-5000 for typical pages. Defaults to: 3000.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
disable_cacheNoDisable network cache during trace. Constraints: boolean. Interactions: when true with action='reload', simulates cold start; cache restored after profiling. Defaults to: false.

TDQS

A4.7/5.0
Behavior5/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, and it does so thoroughly. It states side effects: 'may temporarily disable cache ('disable_cache' defaults to false); impacts page memory/CPU.' It also mentions prerequisites: 'requires an active Chrome tab' and background bandwidth usage. It discloses the return format: 'JSON with vitals, blocking time, and top 5 long tasks.' This is comprehensive 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.

Conciseness5/5

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

The description is compact and well-structured. It front-loads the primary purpose, then efficiently covers side effects, prerequisites, return format, usage scenarios, and alternatives in a few sentences. Every clause contributes meaningful informationβ€”no filler or redundancy.

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

Completeness5/5

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

Despite having 5 parameters and no output schema, the description covers everything an agent needs to call the tool correctly: what it does, when to use it, side effects, prerequisites, return structure, and parameter interactions. The parameter details are in the schema, so the description compensates well for the lack of an output schema by specifying the JSON contents.

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?

Schema coverage is 100%, so the schema already documents each parameter. However, the description adds meaningful interaction context beyond the schema: e.g., 'when true with action='reload', simulates cold start; cache restored after profiling' for disable_cache, and 'use 3000-5000 for typical pages' for duration_ms. This adds value beyond the schema's basic descriptions.

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: 'Records a performance trace of page execution, calculating Core Web Vitals (FCP, LCP, DCL, Load) and identifying Long Tasks (>50ms blocking).' It specifies a concrete action (records), resource (performance trace), and the specific metrics, which distinguishes it from sibling tools like get_performance_metrics that likely fetch existing metrics rather than record a fresh trace.

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 gives explicit usage context: 'Use this to optimize performance, identify bottlenecks, measure cold starts.' It also names alternatives: 'Alternatives: browser DevTools Performance tab, real user monitoring (RUM).' This tells the agent when to use it and what other approaches exist, though it doesn't explicitly state when NOT to use it, which is a minor gap.

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

reloadA

Reloads the current page, discarding all unsaved changes and re-fetching resources from the server. Side effects: destructive of unsaved state; clears dynamic DOM state. Prerequisites: requires an active Chrome tab. Returns: reload confirmation. Use this to refresh page content or reset to initial load state. Alternatives: 'navigate' to load a different URL, 'pause_on_load' to debug reload execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/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 explicitly mentions destructive side effects (discards unsaved changes, clears dynamic DOM), prerequisites (active Chrome tab), and the return value (reload confirmation). This is thorough and leaves nothing hidden.

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 front-loaded with the main action, then covers side effects, prerequisites, return, usage, and alternatives in a logical order. Each sentence adds unique value without redundancy, and the total length is appropriate for the information conveyed.

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

Completeness5/5

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

For a tool with two optional parameters and no output schema, the description covers everything an agent needs: what it does, side effects, prerequisites, return type, usage scenarios, and alternatives. Nothing essential is missing.

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 provides full descriptions for both parameters (tab_id and instance_id) with 100% coverage, so the description doesn't need to add more. The baseline of 3 is appropriate because the description adds no parameter-specific information beyond what the schema already explains, but the schema fully documents them.

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 a specific verb (reload) and resource (current page), and adds context by noting it discards unsaved changes and re-fetches resources. It explicitly distinguishes itself from siblings by naming navigate (for different URL) and pause_on_load (for debugging reload), so an agent can clearly tell it apart.

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?

The description gives explicit when-to-use guidance: 'Use this to refresh page content or reset to initial load state.' It also names alternatives with conditions ('navigate' to load a different URL, 'pause_on_load' to debug reload execution) and states a prerequisite (requires an active Chrome tab). This is complete usage guidance.

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

remove_breakpointA

Removes a previously set debugger breakpoint by its ID, allowing execution to pass that location uninterrupted. Side effects: modifies debugger state (breakpoint deleted). Prerequisites: requires an active, paused debugger session with the breakpoint ID returned from 'set_breakpoint'. Returns: confirmation of breakpoint removal. Use this to clean up breakpoints or disable debugging at specific locations. Alternatives: 'set_breakpoint' to add new breakpoints, 'resume' to continue execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
breakpoint_idYesUnique identifier of the breakpoint (returned from set_breakpoint). Constraints: non-empty string matching format from set_breakpoint response. Interactions: must correspond to an active breakpoint or operation will fail.

TDQS

A4.3/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the full burden of behavioral disclosure. It clearly states side effects (modifies debugger state, breakpoint deleted), prerequisites, and return value (confirmation of removal). It does not detail error cases beyond the schema's note on failure, but for this tool that is sufficient.

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 but comprehensive, front-loading the action and then covering side effects, prerequisites, return, usage, and alternatives in a logical order. No fluff, every sentence adds value. Slightly verbose for a simple tool, but 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, the absence of an output schema, and the full coverage of parameters by the schema, the description covers all necessary context: what it does, when to use it, side effects, prerequisites, and return. It does not mention potential errors beyond the schema's note, but that's not critical for this operation.

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 100%, so the schema already documents all parameters, including breakpoint_id ('Unique identifier of the breakpoint', constraints, interactions). The description does not add additional parameter-specific meaning beyond reinforcing that breakpoint_id comes from set_breakpoint, which is already in the schema. Baseline 3 is appropriate.

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 verb 'Removes' and the resource 'breakpoint' by its ID. It distinguishes itself from siblings by explicitly naming set_breakpoint and resume as alternatives, making it unambiguous which tool to pick.

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?

It provides explicit when-to-use guidance ('Use this to clean up breakpoints or disable debugging at specific locations') and names concrete alternatives with their purposes. The prerequisites to call it are also stated (active, paused session with breakpoint ID from set_breakpoint).

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

restart_chromeA

Stops and restarts the Chrome instance selected by 'instance_id' (the default instance when omitted) with remote debugging enabled, optionally configuring proxy and opt-in capability presets. Side effects: destructive - terminates that instance's Chrome process and all its open tabs; closes its debugging connection; other instances keep running. Prerequisites: requires CHROME_PATH environment variable or chrome in PATH. Returns: restart success confirmation listing the presets applied. Use this to reset browser state, apply proxy settings, enable experimental browser capabilities, recover from crashes. Alternatives: 'reload' to refresh page without restart, 'navigate' to load new content. Parameters: 'features' accepts a closed set - 'WEB_MCP' (enables the experimental WebMCP surface for sites that expose tools to the browser) or 'WEBGL_SOFTWARE' (forces SwiftShader software WebGL for GPU-less environments); arbitrary Chrome flags are not accepted.

ParametersJSON Schema
NameRequiredDescriptionDefault
featuresNoChrome capability presets to enable on the new instance. Constraints: closed set - 'WEB_MCP' turns on the experimental WebMCP surface for sites that expose tools to the browser; 'WEBGL_SOFTWARE' forces SwiftShader software WebGL for GPU-less environments. Arbitrary Chrome flags are not accepted. Interactions: presets apply only to the instance started by this call and are cleared by a later restart that omits them. Defaults to: [] (no presets).
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
proxy_serverNoProxy server URL (e.g., 'http://proxy.example.com:8080'). Constraints: valid proxy URL with protocol and port. Interactions: applied to new Chrome instance; requires 'enable_proxy_auth' for authenticated proxies. Defaults to: None (no proxy).

TDQS

A4.6/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full behavioral burden, and it meets it thoroughly. It discloses that the operation is destructive β€” 'terminates that instance's Chrome process and all its open tabs; closes its debugging connection' β€” while reassuring that 'other instances keep running.' It also states the prerequisite (CHROME_PATH env var or chrome in PATH) and the return value. This is complete behavioral disclosure for a destructive 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.

Conciseness4/5

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

The text is dense but every sentence earns its place: main action first, then side effects, prerequisites, return value, use cases, alternatives, and parameter notes. It is front-loaded with the core action and scoping constraint. Slightly long, but defensible given the tool's complexity (destructive restart with configurable presets, proxy, and multiple side effects to disclose).

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

Completeness5/5

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

For a destructive 3-parameter tool with no annotations and no output schema, nothing an agent needs is missing: purpose, side effects, prerequisite environment requirements, return format ('restart success confirmation listing the presets applied'), use cases, alternatives, and parameter constraints are all covered. Context is 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?

Schema coverage is 100% and the schema's own parameter descriptions are rich β€” they already explain the closed set for 'features', the proxy URL format, and the instance_id source. The description reinforces the closed-set constraint ('arbitrary Chrome flags are not accepted') and summarizes the presets, but adds only marginal meaning beyond what the schema already provides. The baseline of 3 is appropriate since the schema does the heavy lifting.

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 opens with a precise verb-plus-resource statement: 'Stops and restarts the Chrome instance selected by instance_id... with remote debugging enabled'. This clearly distinguishes it from sibling tools like 'reload' (refresh page), 'navigate' (load new content), and 'stop_chrome' (which only kills). An agent can identify what this tool does and what it is not without opening any schema.

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?

The description explicitly states when to use it: 'Use this to reset browser state, apply proxy settings, enable experimental browser capabilities, recover from crashes.' It also names alternatives with the conditions that select them: 'reload' to refresh without restart and 'navigate' to load new content. This is the full expected pattern β€” explicit when-to-use plus exclusionary routing.

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

resumeA

Continues full execution of the debugger from current breakpoint. Side effects: advances code execution until next breakpoint or completion. Prerequisites: requires an active, paused debugger session. Returns: confirmation of resume command. Use this to continue program flow after inspection. Alternatives: 'step_over' or 'step_out' for single-step execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.5/5.0
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 of behavioral disclosure. It states side effects ('advances code execution until next breakpoint or completion'), prerequisites, and the return confirmation. It does not mention whether the operation is reversible or if it alters breakpoints, but the core behavioral impact (execution resumes) is clearly disclosed. This is more than adequate for the tool's purpose.

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. Each sentence delivers distinct value: the action, side effects, prerequisites, return, usage guidance, and alternatives are all clearly separated. It front-loads the core function and keeps the description to four sentences without redundancy.

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

Completeness5/5

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

For a tool that simply resumes a debugger, the description covers all essential aspects: what it does, conditions for use, what to expect as a result, and alternatives. There is no output schema, but the description's return statement ('confirmation of resume command') suffices. An agent has everything needed to call this tool correctly.

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 provides 100% coverage for both parameters (tab_id and instance_id) with clear descriptions. The tool description does not add new parameter semantics, but none are needed since the schema already explains them. Baseline of 3 is appropriate here.

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 function: 'Continues full execution of the debugger from current breakpoint.' It uses a specific verb ('continues') and resource ('full execution of the debugger'), and explicitly distinguishes itself from single-step alternatives, making it easy for an agent to differentiate from siblings like step_over.

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?

The description explicitly says when to use it ('Use this to continue program flow after inspection') and names alternatives ('step_over' or 'step_out' for single-step execution). It also states the prerequisite: 'requires an active, paused debugger session.' This leaves no ambiguity about when to select this tool over others.

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

scrollA

Scrolls the page by pixel offset, viewport pages, or to a specific element using CSS selector. Side effects: modifies DOM scroll position (observable but reversible). Prerequisites: requires an active Chrome tab with content. Returns: scroll completion confirmation. Use this to navigate within long pages or bring elements into view. Alternatives: 'click_element' to trigger scroll by clicking, 'evaluate_js' for custom scroll logic.

ParametersJSON Schema
NameRequiredDescriptionDefault
xNoHorizontal scroll distance in pixels. Constraints: integer (positive=right, negative=left). Interactions: ignored if 'selector' is provided; combined with 'y' for diagonal scrolling. Defaults to: 0 (no horizontal scroll).
yNoVertical scroll distance in pixels. Constraints: integer (positive=down, negative=up). Interactions: ignored if 'selector' or 'pages' is provided; overridden by 'pages'. Defaults to: 0 (no vertical scroll).
pagesNoNumber of viewport heights to scroll vertically. Constraints: positive float (e.g., 1.5 = 1.5Γ— viewport height). Interactions: takes precedence over 'y' parameter if both provided; ignored if 'selector' provided. Defaults to: None.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
selectorNoCSS selector of element to scroll into view. Constraints: valid CSS selector string. Interactions: takes precedence over 'x', 'y', 'pages' if provided; fails if element not found. Defaults to: None.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.4/5.0
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 and discloses a side effect ('modifies DOM scroll position (observable but reversible)'), a prerequisite, and a return value. This is useful transparency, though it does not go into edge cases like element-not-found failure or lazy-loading behavior.

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?

Four concise sentences front-load the primary action, then cover side effects, prerequisites, return value, use case, and alternatives with no wasted words. Every sentence earns its place.

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?

For a six-parameter tool with no output schema or annotations, the description gives enough context to use it correctly: purpose, modes, side effects, return confirmation, and relevant alternatives. It could add more about failure modes, but the schema covers parameter-level behavior comprehensively.

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 parameter schema already provides 100% coverage with detailed descriptions for each parameter, so the baseline is 3. The description adds a useful high-level mapping of pixel offset, pages, and selector to the underlying parameters, but does not add meaning beyond what the schema already documents.

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 a specific verb and resource ('Scrolls the page') and enumerates the three distinct modes: pixel offset, viewport pages, and element selector. It also distinguishes itself from sibling tools by naming click_element and evaluate_js as alternatives.

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?

The description explicitly says when to use this tool ('navigate within long pages or bring elements into view') and names alternatives with their purpose ('click_element' for click-triggered scroll, 'evaluate_js' for custom scroll logic). It also provides a prerequisite: requires an active Chrome tab with content.

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

search_scriptsA

Searches all cached script sources for a text pattern and returns matching locations (line and column numbers). Side effects: none (read-only query). Prerequisites: scripts must have been parsed and cached by the debugger. Returns: JSON array of matches with script ID, line/column numbers, and line preview. Use this to locate code before setting breakpoints. Alternatives: 'set_breakpoint' for direct breakpoint placement, 'evaluate_js' for runtime code discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesText pattern or special command to search for. Constraints: non-empty string (empty string returns cached script count). Interactions: '@source' returns first 1000 chars of each script; 'debug' returns script lengths and errors. Defaults to: None (required).
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.5/5.0
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 explicitly states 'Side effects: none (read-only query)' and discloses prerequisites and return format. While it doesn't cover auth or rate limits, for a read-only search tool these are less critical; the description covers the key behavioral traits sufficiently.

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 well-structured with clear sections (action, side effects, prerequisites, return, usage, alternatives). Each sentence adds value with no redundancy. It front-loads the primary action and logically groups related information, making it easy for an agent to parse.

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

Completeness5/5

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

The description covers all essential context for an agent to correctly invoke the tool: what it does, prerequisites, side effects, return format, and alternatives. Since there is no output schema, the return format explanation is critical and provided. Nothing an agent needs to call it correctly is missing.

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 100%, so the schema already documents all three parameters in detail. The description does not add extra parameter-level semantics beyond what the schema provides; it focuses on usage context, which is not part of parameter semantics. Baseline of 3 is appropriate.

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 ('searches'), the resource ('all cached script sources'), and the result ('matching locations with line and column numbers'). It also distinguishes itself from siblings by naming alternatives and placement guidance, leaving no ambiguity about what the tool does.

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?

Provides explicit when-to-use guidance ('Use this to locate code before setting breakpoints'), clearly states prerequisites ('scripts must have been parsed and cached'), and names two specific alternatives with conditions for selecting them. This fully routes the agent to the correct tool selection.

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

send_cdp_commandA

EXPERIMENTAL: Sends raw Chrome DevTools Protocol (CDP) commands to the browser for advanced use cases not covered by specialized tools. Side effects: depends on command; may modify page state, DOM, or trigger navigation. Auth requirements: subject to local-only restrictions if enabled (Page.navigate checked). Prerequisites: requires knowledge of CDP protocol; active Chrome connection. Returns: raw CDP command response as JSON. Use this only when specialized tools inadequate. Alternatives: use domain-specific tools (navigate, click_element, evaluate_js).

ParametersJSON Schema
NameRequiredDescriptionDefault
methodYesCDP protocol method name (e.g., 'DOM.getDocument', 'Runtime.evaluate'). Constraints: valid CDP domain.method format. Interactions: method must be recognized by Chrome protocol version.
paramsNoJSON-formatted parameters for the CDP command. Constraints: valid JSON object string. Interactions: Page.navigate URLs subject to local-only restrictions; empty string or '{}' for no parameters. Defaults to: None.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description fully discloses behavioral traits: side effects ('may modify page state, DOM, or trigger navigation'), auth restrictions (local-only for Page.navigate), and the experimental nature. It clearly states the raw return format. This is exactly what a high-risk tool needs.

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 dense but every sentence earns its place: experimental warning, purpose, side effects, auth, prerequisites, return type, and usage guidance. Front-loaded with the 'EXPERIMENTAL' warning and purpose. No filler or repetition.

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

Completeness5/5

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

Given the tool's complexity (raw CDP, safety, auth, prerequisites) and lack of output schema, the description covers all necessary context: what it does, when to avoid it, side effects, auth, prerequisites, and return format. Nothing an agent needs to safely and correctly invoke it is missing.

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 100% for all 4 parameters, so the baseline is 3. The description reinforces constraints (e.g., 'Page.navigate URLs subject to local-only restrictions') but does not add meaning beyond what the schema already provides. It mentions the JSON format for params, but the schema says the same. No extra semantic value.

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 'sends' with the resource 'raw Chrome DevTools Protocol (CDP) commands' and explicitly frames it as 'for advanced use cases not covered by specialized tools.' It distinguishes itself from siblings by naming alternatives (navigate, click_element, evaluate_js) and stating when it should not be used.

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?

Provides explicit guidance: 'Use this only when specialized tools inadequate' and directly lists alternative tools. It also states prerequisites (knowledge of CDP protocol, active Chrome connection) and auth caveats (local-only restrictions for Page.navigate). This is comprehensive routing advice.

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

set_breakpointA

Sets a debugger breakpoint at a specific location, pausing execution when reached. Side effects: modifies debugger state (breakpoint added until removed). Prerequisites: requires an active Chrome tab; target script must be loaded. Returns: breakpoint identifier and location confirmation. Use this to debug specific code paths. Alternatives: 'pause_on_load' for early script execution, 'search_scripts' to find scripts by pattern.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoScript URL to match. Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Interactions: mutually exclusive with 'script_hash' and 'script_id'. Defaults to: None.
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
script_idNoScript ID (from Debugger.scriptParsed event). Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Interactions: mutually exclusive with 'script_hash' and 'url' (first match wins). Defaults to: None.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
line_numberYesLine number where breakpoint is set (0-indexed). Constraints: non-negative integer, must be within script bounds. Interactions: required parameter; combined with 'column_number' to pinpoint exact location.
script_hashNoScript hash to identify the target script. Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Defaults to: None.
column_numberNoColumn number within the line. Constraints: non-negative integer. Interactions: optional; narrower precision if provided. Defaults to: start of line (0).

TDQS

A4.4/5.0
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 covers side effects ('modifies debugger state (breakpoint added until removed)'), prerequisites, and return value. While it doesn't mention edge cases like duplicate breakpoints or persistence across navigations, the disclosed side effects and prerequisites are substantive and helpful for an agent deciding to call or not.

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 compact and well-structured: two core sentences plus an alternatives sentence. It front-loads the purpose, then side effects, prerequisites, return, and usage guidance. No fluffβ€”every sentence earns its place, and the alternatives are efficiently listed.

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?

For a tool with 7 parameters and no output schema or annotations, the description provides the essential context: purpose, side effects, prerequisites, return, and alternatives. It doesn't detail parameter relationships or error states, but the schema handles parameter specifics. The description is sufficiently complete for an agent to decide on invocation, though a note on persistence or failure handling would push it to 5.

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 100% per context signals, so the baseline is 3. The description does not add any parameter-specific details beyond the schema; it only mentions the return value, not the parameters themselves. Since the schema already thoroughly explains each parameter with constraints and interactions, the description adds no extra semantic value for parameters, hence a 3.

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 opens with a clear verb and resource: 'Sets a debugger breakpoint at a specific location, pausing execution when reached.' It names the exact action and resource, and distinguishes itself from siblings by explicitly mentioning alternatives like 'pause_on_load' and 'search_scripts', making the tool's purpose unambiguous.

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?

The description explicitly states when to use: 'Use this to debug specific code paths,' and provides alternatives with conditions: 'Alternatives: ''pause_on_load'' for early script execution, ''search_scripts'' to find scripts by pattern.' It also states prerequisites (active tab, script loaded), giving clear guidance on when it can and should be used.

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

step_overB

Executes the current line of code without entering function calls, pausing at the next line. Side effects: advances debugger execution state. Prerequisites: requires an active, paused debugger session. Returns: confirmation of step execution. Use this to skip function internals during debugging. Alternatives: use 'resume' to continue full execution, 'step_over' enters functions, or 'evaluate_on_call_frame' to inspect state without stepping.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden and does disclose side effects ('advances debugger execution state'), prerequisites ('requires an active, paused debugger session'), and return value. However, the internal contradiction in the alternatives line undermines the clarity of the behavioral contract.

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 front-loaded and has a logical structure (action, side effects, prerequisites, returns, usage). The alternatives sentence is clunky and contains an error, which makes the text less clean than it could be.

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 prerequisites, side effects, return type, and use case, which is mostly sufficient for a simple debugging action. But the contradictory alternative guidance leaves unresolved ambiguity about when and how to select this tool versus a step-into operation.

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 100%, so the schema sufficiently documents tab_id and instance_id. The description adds no parameter-specific meaning, but per baseline it does not need to.

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 opening sentence clearly states the tool's action: executing the current line without entering function calls and pausing at the next line. However, the later alternatives line says 'step_over enters functions', which introduces confusion and slightly blurs the primary definition.

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 explicitly says 'Use this to skip function internals' and names resume and evaluate_on_call_frame as alternatives. But it also lists 'step_over' as an alternative that 'enters functions', which is both not an alternative and contradicts the tool's own behavior, potentially misleading an agent about tool selection.

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

stop_chromeA

Gracefully terminates the Chrome instance selected by 'instance_id' (the default instance when omitted) and closes all its debugging connections. Side effects: destructive - kills the Chrome process of that instance only; its open tabs are closed; unsaved data lost; other instances keep running. Prerequisites: the instance must be running. Returns: termination success confirmation. Use this to clean up resources, prevent zombie processes, or end a debugging session. Alternatives: 'restart_chrome' to restart instead of stop, 'close_instance' to also remove a secondary instance from the registry.

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and does so excellently. It discloses destructive side effects (kills the process, closes tabs, loses unsaved data), scope (only that instance, others keep running), prerequisites (instance must be running), and return value (success confirmation). This is comprehensive and prevents surprises.

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 longer than strictly necessary but every sentence carries relevant information: action, side effects, prerequisites, return, use cases, and alternatives. The core action is front-loaded, and the text is well-structured. While verbose, it is not wasteful, earning a 4.

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

Completeness5/5

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

For a destructive tool with no output schema, the description covers all essential context: what it does, side effects, scope, prerequisites, return value, when to use, and alternatives. An agent has everything needed to call it correctly and anticipate consequences. 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?

Schema coverage is 100% for the single parameter (instance_id), and the description repeats the same information ('selected by instance_id', 'default instance when omitted'). No additional semantic meaning is added beyond the schema, so a baseline of 3 is appropriate.

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 a specific action (gracefully terminates) on a specific resource (Chrome instance identified by instance_id), and clearly distinguishes itself from sibling tools like restart_chrome and close_instance by naming them and their different purposes. The purpose 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 Guidelines5/5

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

Explicitly states when to use ('clean up resources, prevent zombie processes, or end a debugging session') and lists alternatives with conditions ('restart_chrome' to restart, 'close_instance' to also remove from registry). This provides clear routing for the agent.

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

switch_tabA

Switches the active default tab to the specified Tab ID. Side effects: the switched tab becomes the default target of all subsequent tool calls in this instance that omit 'tab_id'; when 'activate' is true it is also brought to the foreground in the Chrome window ('activate' defaults to true). Prerequisites: the tab must exist (see 'list_tabs'). Returns: structured JSON with the new 'active_tab_id' and whether the tab was brought to the foreground. Use this before interacting with a different page without repeating 'tab_id' on every call. Alternatives: pass 'tab_id' directly on an individual tool call to address a tab without switching.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idYesThe Tab ID to switch to (e.g. 'tab-1').
activateNoIf true, brings the tab to the foreground in the browser. Defaults to true.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries full disclosure burden. It clearly states side effects (becomes default target, brings to foreground when activate is true), prerequisites (tab must exist, with pointer to list_tabs), and return format (structured JSON with active_tab_id and foreground status). This is thorough and accurate.

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?

Each sentence delivers distinct information: action, side effects, defaults, prerequisites, return value, usage guidance, and alternatives. It is front-loaded with the core action and avoids filler. Though slightly long, every clause earns its place.

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

Completeness5/5

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

Given the tool's complexity (side effects, defaults, prerequisites, return), the description covers everything an agent needs: what it does, why to use it, what changes state, and what to expect in response. No output schema exists, so the return description is essential and provided.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema: it explains that tab_id becomes the default for subsequent calls, and that activate defaults to true and controls foregrounding. This enhances understanding of each parameter without redundancy.

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?

States a specific verb ('Switches') and a clear resource ('active default tab to the specified Tab ID'). It also differentiates from sibling tools by explaining that unlike passing tab_id directly, this changes the default target, and names alternatives like list_tabs. No ambiguity.

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 says when to use it: 'before interacting with a different page without repeating tab_id on every call.' Also gives the alternative: 'pass tab_id directly on an individual tool call to address a tab without switching.' Provides both use case and exclusion, which is complete guidance.

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

webmcp_get_invocationA

Returns the current status and result of a WebMCP tool invocation by its invocationId. Side effects: none (read-only state access). Prerequisites: the invocationId must have been returned by webmcp_invoke_tool (it is included in the timeout error when a page tool awaits user consent). Returns: JSON with toolName, frameId, input, status ('Pending', 'Completed', 'Error', or 'Canceled'), and output/errorText when available. Use this to poll a long-running invocation (e.g. one waiting for a human to approve a consent dialog on the page) without blocking. Alternatives: webmcp_list_invocations to see all invocations at once.

ParametersJSON Schema
NameRequiredDescriptionDefault
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.
invocationIdYesInvocation identifier returned by webmcp_invoke_tool. Constraints: must match a known invocation from this Chrome session.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description fully bears the behavioral disclosure burden. It explicitly states 'Side effects: none (read-only state access)' and details the return JSON structure, including status values and output/errorText. It also explains the source of invocationId in a timeout error scenario, adding useful 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.

Conciseness5/5

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

Every sentence earns its place: purpose, side effects, prerequisites, return format, usage, and alternative are covered in a compact, well-sequenced paragraph. The most critical information (what it does and side effects) is front-loaded.

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

Completeness5/5

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

There is no output schema, so the description correctly provides the return shape (toolName, frameId, input, status, output/errorText). It also covers prerequisites, side effects, usage context, and an alternative. For a polling tool with no nested objects and clear parameters, everything an agent needs to call it correctly is present.

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 100%, so all three parameters already have descriptions. The tool description adds minimal value beyond this: it repeats the origin of invocationId (already in schema) and does not elaborate on tab_id or instance_id. Per the baseline rule, a score of 3 is appropriate when the schema handles parameter 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 opens with a precise verb+resource statement: 'Returns the current status and result of a WebMCP tool invocation by its invocationId.' It explicitly names the alternative webmcp_list_invocations, so an agent can immediately distinguish it from siblings without inspecting schemas.

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?

The description gives explicit guidance: 'Use this to poll a long-running invocation ... without blocking' and names the alternative (webmcp_list_invocations) with the condition for choosing it. It also states the prerequisite that invocationId must come from webmcp_invoke_tool, leaving nothing to inference.

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

webmcp_invoke_toolA

Invokes a WebMCP tool registered by the current web page. Side effects: depends on the tool invoked; may modify page state, trigger network requests, or perform other actions defined by the page. Prerequisites: WebMCP feature must be enabled, target frame must exist, and the tool must be registered. Returns: The output of the tool invocation. Use this to interact with page-provided tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputYesJSON object string with the input parameters for the page tool (must match its inputSchema). Use "{}" when the tool takes no parameters. Defaults to: "{}".
frameIdYesTarget frame ID where the tool is registered. Constraints: must match a valid frame ID returned by webmcp_list_tools.
toolNameYesName of the WebMCP tool to invoke. Constraints: must match a registered tool name.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses side effects explicitly ('may modify page state, trigger network requests, or perform other actions'), states prerequisites, and returns 'the output of the tool invocation.' This is adequate behavioral disclosure for a generic invoker, though it lacks details like error handling or authentication requirements.

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 three sentences, front-loaded with primary purpose, then side effects, then usage guidance. Every sentence earns its place with no redundancy. It is well-structured and easy to parse.

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?

The tool is a generic invoker, and the description covers prerequisites, side effects, and return value. No output schema exists, but the return is described sufficiently. Missing details like whether the invocation is synchronous or asynchronous are not critical for a generic tool. It is complete enough for an agent to call correctly.

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 100%, so the baseline is 3. The description does not add extra meaning beyond the schema's per-parameter explanations. For instance, the input parameter already explains the JSON string format and default '{}'. The description adds no further semantic insight, so it stays at baseline.

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 a clear, specific verb-resource pair: 'Invokes a WebMCP tool registered by the current web page.' This distinguishes it from siblings like webmcp_list_tools (listing) and webmcp_get_invocation (retrieving results). The purpose 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 Guidelines4/5

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

The description provides prerequisites (WebMCP enabled, frame exists, tool registered) and a general usage statement ('Use this to interact with page-provided tools'). It implicitly points to webmcp_list_tools for frame IDs, but does not explicitly contrast with alternatives like evaluate_js or other invocation methods. Guidance is present but not exhaustive.

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

webmcp_list_invocationsA

Lists all WebMCP tool invocations from this Chrome session with their current status. Side effects: none (read-only state access). Returns: JSON array with toolName, frameId, input, and status ('Pending', 'Completed', 'Error', or 'Canceled') for each invocation. Use this to find invocations that are waiting for user consent on the page (status 'Pending') or to recover an invocationId after losing it. Alternatives: webmcp_get_invocation for a single invocation by id.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoOptional filter: only return invocations with this status. Constraints: one of 'Pending', 'Completed', 'Error', 'Canceled'. Defaults to: None (all invocations).
tab_idNoThe Tab ID of the target tab. Omit to use the active tab.
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations are absent, so the description carries the full burden. It explicitly states 'Side effects: none (read-only state access)' and describes the return format (JSON array with fields and statuses). It does not mention potential errors or performance, but for a read-only list operation this is sufficient.

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?

Three sentences with zero filler. The purpose and side effects are front-loaded, the return format is given, and the alternatives are at the end. Every sentence earns its place.

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

Completeness5/5

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

For a read-only list tool with three optional parameters fully described in the schema, the description covers the return format, use cases, and alternative. Nothing an agent needs to call it correctly is missing.

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 100%, so parameters (status, tab_id, instance_id) are already documented. The description does not add additional semantics beyond what the schema provides; it simply references the status filter implicitly. Baseline 3 is appropriate.

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?

States a specific verb ('Lists') with a clear resource ('all WebMCP tool invocations') and scope ('from this Chrome session'). Explicitly names the alternative (webmcp_get_invocation) and the differentiator (single by id vs. all), so an agent can distinguish without opening schemas.

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?

Gives explicit use cases: find invocations waiting for user consent (status 'Pending') and recover a lost invocationId. Also names the alternative tool and when to use it. No ambiguity about when this tool is appropriate.

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

webmcp_list_toolsA

Lists all WebMCP tools currently registered by the web page. Side effects: none (read-only state access). Prerequisites: WebMCP feature must be enabled in Chrome and the page must have registered tools. Returns: JSON array of available tools with schemas and frame IDs. Use this to discover capabilities exposed by websites implementing WebMCP.

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idNoChrome instance id from open_instance/list_instances. Omit for the default instance.

TDQS

A4.2/5.0
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 explicitly states 'Side effects: none (read-only state access)' and lists prerequisites. It also mentions the return format: 'Returns: JSON array of available tools with schemas and frame IDs.' This provides adequate transparency for a read-only listing 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 two dense sentences. The core action is stated first, followed by side effects, prerequisites, return type, and usage guidance. No redundant information; every clause earns its place.

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 low complexity (1 optional param, read-only), the description covers the essentials: purpose, side effects, prerequisites, and return shape. It does not mention error behavior when no tools are registered or when the feature is disabled, but that is a minor gap for a listing tool. Overall, an agent has sufficient information to call it correctly.

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 sole parameter 'instance_id' is fully described in the schema (coverage 100%), with guidance on omitting for the default instance. The tool description does not add any additional parameter semantics beyond what the schema provides, so the baseline score of 3 applies.

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 'Lists all WebMCP tools currently registered by the web page.' It specifies the verb (Lists), the resource (WebMCP tools), and the scope (registered by the web page), making it easily distinguishable from siblings like webmcp_invoke_tool or webmcp_list_invocations.

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 usage context: 'Use this to discover capabilities exposed by websites implementing WebMCP.' It also notes prerequisites (feature enabled, tools registered). It doesn't explicitly contrast with alternatives, but the purpose is obvious; it's the discovery tool while siblings handle invocation or invocation history.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 33 tool updatesv1.3.2
    • Changedcapture_screenshot5 fields changed
      • removedInput schema / properties / format / nullable
        Removed value: -true
      • removedInput schema / properties / full_page / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / quality / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedclick_element2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedclose_tab1 field changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
    • Changedenable_proxy_auth4 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / prewarm_url / nullable
        Removed value: -true
      • removedInput schema / properties / resource_type / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedevaluate_js2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedevaluate_on_call_frame2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedfill_input2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedget_console_logs4 fields changed
      • removedInput schema / properties / clear / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / level_filter / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedget_custom_events3 fields changed
      • removedInput schema / properties / filter_method / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedget_network_logs8 fields changed
      • removedInput schema / properties / clear / nullable
        Removed value: -true
      • removedInput schema / properties / include_details / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
      • removedInput schema / properties / type_filter / nullable
        Removed value: -true
      • removedInput schema / properties / url_filter / nullable
        Removed value: -true
      • removedInput schema / properties / ws_content_filter / nullable
        Removed value: -true
      • removedInput schema / properties / ws_direction_filter / nullable
        Removed value: -true
    • Changedget_performance_metrics2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedinspect_dom5 fields changed
      • removedInput schema / properties / after / nullable
        Removed value: -true
      • removedInput schema / properties / before / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / query / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedlist_tabs1 field changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
    • Changednavigate2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedopen_instance7 fields changed
      • addedInput schema / properties / features / items / enum
        Added value: +[
        +  "WEB_MCP",
        +  "WEBGL_SOFTWARE"
        +]
      • removedInput schema / properties / features / items / oneOf
        Removed value: -[
        -  {
        -    "enum": [
        -      "WEB_MCP"
        -    ]
        -  },
        -  {
        -    "enum": [
        -      "WEBGL_SOFTWARE"
        -    ]
        -  }
        -]
      • addedInput schema / properties / features / items / type
        Added value: +"string"
      • removedInput schema / properties / features / nullable
        Removed value: -true
      • removedInput schema / properties / headless / nullable
        Removed value: -true
      • removedInput schema / properties / label / nullable
        Removed value: -true
      • removedInput schema / properties / proxy / nullable
        Removed value: -true
    • Changedopen_tab3 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / label / nullable
        Removed value: -true
      • removedInput schema / properties / url / nullable
        Removed value: -true
    • Changedpause_on_load2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedprofile_page_performance5 fields changed
      • removedInput schema / properties / action / nullable
        Removed value: -true
      • removedInput schema / properties / disable_cache / nullable
        Removed value: -true
      • removedInput schema / properties / duration_ms / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedreload2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedremove_breakpoint2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedrestart_chrome6 fields changed
      • addedInput schema / properties / features / items / enum
        Added value: +[
        +  "WEB_MCP",
        +  "WEBGL_SOFTWARE"
        +]
      • removedInput schema / properties / features / items / oneOf
        Removed value: -[
        -  {
        -    "enum": [
        -      "WEB_MCP"
        -    ]
        -  },
        -  {
        -    "enum": [
        -      "WEBGL_SOFTWARE"
        -    ]
        -  }
        -]
      • addedInput schema / properties / features / items / type
        Added value: +"string"
      • removedInput schema / properties / features / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / proxy_server / nullable
        Removed value: -true
    • Changedresume2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedscroll6 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / pages / nullable
        Removed value: -true
      • removedInput schema / properties / selector / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
      • removedInput schema / properties / x / nullable
        Removed value: -true
      • removedInput schema / properties / y / nullable
        Removed value: -true
    • Changedsearch_scripts2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedsend_cdp_command3 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / params / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedset_breakpoint6 fields changed
      • removedInput schema / properties / column_number / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / script_hash / nullable
        Removed value: -true
      • removedInput schema / properties / script_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
      • removedInput schema / properties / url / nullable
        Removed value: -true
    • Changedstep_over2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedstop_chrome1 field changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
    • Changedswitch_tab2 fields changed
      • removedInput schema / properties / activate / nullable
        Removed value: -true
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
    • Changedwebmcp_get_invocation2 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedwebmcp_invoke_tool1 field changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
    • Changedwebmcp_list_invocations3 fields changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
      • removedInput schema / properties / status / nullable
        Removed value: -true
      • removedInput schema / properties / tab_id / nullable
        Removed value: -true
    • Changedwebmcp_list_tools1 field changed
      • removedInput schema / properties / instance_id / nullable
        Removed value: -true
  2. 35 tool updatesv1.0.11
    • Changedcapture_screenshot2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedclick_element2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedclose_instance
    • Addedclose_tab
    • Changedenable_proxy_auth2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedevaluate_js2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedevaluate_on_call_frame2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedfill_input2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedget_console_logs
    • Changedget_custom_events2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedget_network_logs
    • Addedget_performance_metrics
    • Changedinspect_dom2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedlist_instances
    • Addedlist_tabs
    • Changednavigate2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedopen_instance
    • Addedopen_tab
    • Changedpause_on_load2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedprofile_page_performance2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedreload2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedremove_breakpoint
    • Changedrestart_chrome2 fields changed
      • addedInput schema / properties / features
        Added value: +{
        +  "description": "Chrome capability presets to enable on the new instance. Constraints: closed set - 'WEB_MCP' turns on the experimental WebMCP surface for sites that expose tools to the browser; 'WEBGL_SOFTWARE' forces SwiftShader software WebGL for GPU-less environments. Arbitrary Chrome flags are not accepted. Interactions: presets apply only to the instance started by this call and are cleared by a later restart that omits them. Defaults to: [] (no presets).",
        +  "items": {
        +    "oneOf": [
        +      {
        +        "enum": [
        +          "WEB_MCP"
        +        ]
        +      },
        +      {
        +        "enum": [
        +          "WEBGL_SOFTWARE"
        +        ]
        +      }
        +    ]
        +  },
        +  "nullable": true,
        +  "type": "array"
        +}
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedresume
    • Addedscroll
    • Changedsearch_scripts2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Changedsend_cdp_command2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedset_breakpoint
    • Changedstep_over2 fields changed
      • addedInput schema / properties / instance_id
        Added value: +{
        +  "description": "Chrome instance id from open_instance/list_instances. Omit for the default instance.",
        +  "nullable": true,
        +  "type": "string"
        +}
      • addedInput schema / properties / tab_id
        Added value: +{
        +  "description": "The Tab ID of the target tab. Omit to use the active tab.",
        +  "nullable": true,
        +  "type": "string"
        +}
    • Addedstop_chrome
    • Addedswitch_tab
    • Addedwebmcp_get_invocation
    • Addedwebmcp_invoke_tool
    • Addedwebmcp_list_invocations
    • Addedwebmcp_list_tools
  3. 8 tool updatesv1.0.10
    • Removedget_console_logs
    • Removedget_network_logs
    • Removedget_performance_metrics
    • Removedremove_breakpoint
    • Removedresume
    • Removedscroll
    • Removedset_breakpoint
    • Removedstop_chrome
  4. 18 tool updatesv1.0.7
    • Changedcapture_screenshot3 fields changed
      • changedInput schema / properties / format / description
        Previous value: -"Optional: Image format. Valid options: \"png\", \"jpeg\", \"webp\". Defaults to \"png\"."New value: +"Output image format. Constraints: must be 'png', 'jpeg', or 'webp'. Interactions: 'quality' applies only to 'jpeg' and 'webp' formats. Defaults to: \"png\"."
      • changedInput schema / properties / full_page / description
        Previous value: -"Optional: Capture the full page layout (beyond the visible viewport). Defaults to false."New value: +"Capture the entire page beyond visible viewport. Constraints: boolean value. Interactions: if true, captures full page height; if false, captures only visible area. Defaults to: false."
      • changedInput schema / properties / quality / description
        Previous value: -"Optional: JPEG or WEBP compression quality (0-100)."New value: +"Compression quality (0-100, higher=better quality). Constraints: integer between 0 and 100. Interactions: only applies when 'format' is 'jpeg' or 'webp'; ignored for 'png'. Defaults to: 100."
    • Changedclick_element1 field changed
      • changedInput schema / properties / selector / description
        Previous value: -"CSS selector for the element to click"New value: +"CSS selector identifying the target element. Constraints: valid CSS selector string matching a single DOM element. Interactions: must resolve to exactly one visible element or operation fails. Defaults to: None (required)."
    • Changedenable_proxy_auth4 fields changed
      • addedInput schema / properties / password / description
        Added value: +"Proxy authentication password. Constraints: non-empty string. Interactions: paired with 'username'; sent to proxy server on auth challenge."
      • addedInput schema / properties / prewarm_url / description
        Added value: +"URL to navigate for proxy pre-warming. Constraints: valid URL (http/https). Interactions: navigated after auth setup to trigger proxy auth flow. Defaults to: \"http://api.ipify.org?format=json\"."
      • addedInput schema / properties / resource_type / description
        Added value: +"Resource type to intercept. Constraints: 'Document', 'Image', 'Script', 'XHR', etc. (Chrome CDP resource types). Interactions: filters which request types trigger auth handling. Defaults to: \"Document\"."
      • addedInput schema / properties / username / description
        Added value: +"Proxy authentication username. Constraints: non-empty string. Interactions: paired with 'password'; sent to proxy server on auth challenge."
    • Changedevaluate_js1 field changed
      • addedInput schema / properties / expression / description
        Added value: +"JavaScript code expression to execute. Constraints: valid JavaScript (single expression or IIFE). Interactions: automatically awaits promises; 'returnByValue' returns serialized results. Defaults to: None (required)."
    • Changedevaluate_on_call_frame1 field changed
      • addedInput schema / properties / expression / description
        Added value: +"JavaScript expression to evaluate in call frame scope. Constraints: valid JavaScript accessing local/closure variables. Interactions: requires active paused debugger session; has access to function parameters and local variables. Defaults to: None (required)."
    • Changedfill_input2 fields changed
      • changedInput schema / properties / selector / description
        Previous value: -"CSS selector for the input element to fill"New value: +"CSS selector identifying the input element. Constraints: valid CSS selector matching an input/textarea/contenteditable element. Interactions: element must be focusable and writable. Defaults to: None (required)."
      • changedInput schema / properties / text / description
        Previous value: -"The text to insert into the input field"New value: +"Text content to insert. Constraints: any string (special chars escaped automatically). Interactions: replaces any existing text after focus; triggers input/change events. Defaults to: None (required)."
    • Changedget_console_logs2 fields changed
      • changedInput schema / properties / clear / description
        Previous value: -"If true, clears the internal console logs cache after retrieving the current logs. Use this to reset the state and only capture new logs going forward."New value: +"Clear console cache after returning logs. Constraints: boolean. Interactions: when true, subsequent calls only return new messages. Defaults to: false."
      • changedInput schema / properties / level_filter / description
        Previous value: -"Optional level filter (e.g., \"error\", \"warning\", \"info\", \"log\")."New value: +"Filter logs by severity level (case-insensitive). Constraints: 'error', 'warning', 'info', 'log', or similar CDP log level. Interactions: when provided, returns only matching level; empty returns all. Defaults to: None (no filtering)."
    • Changedget_custom_events2 fields changed
      • changedInput schema / properties / filter_method / description
        Previous value: -"Optional: Filter events by method name (e.g., 'Target.targetCreated')."New value: +"Filter events by CDP method name (case-sensitive). Constraints: string matching format 'Domain.eventName'. Interactions: when omitted, returns all events. Defaults to: None (no filtering)."
      • changedInput schema / properties / limit / description
        Previous value: -"Optional: Limit the number of events returned (default 100)."New value: +"Maximum number of events to return. Constraints: positive integer (0 = unlimited, clamped to cache size). Interactions: limits result set size. Defaults to: 100."
    • Changedget_network_logs6 fields changed
      • changedInput schema / properties / clear / description
        Previous value: -"If true, clears the internal network logs cache after retrieving the current logs. Use this to reset the state and only capture new traffic going forward."New value: +"Clear network cache after returning logs. Constraints: boolean. Interactions: when true, subsequent calls return only new traffic. Defaults to: false."
      • changedInput schema / properties / include_details / description
        Previous value: -"If true (default), returns full details including request/response headers, response bodies for REST, and full payloads for WebSockets. If false, returns a summary containing only the URL, method, status, statusText, and resourceType (or payload length for WS). Set to false when you just need to survey what requests were made without downloading all their contents."New value: +"Include full request/response details. Constraints: boolean. Interactions: when false, returns summary only (URL, method, status); when true, includes headers, bodies. Defaults to: true."
      • changedInput schema / properties / type_filter / description
        Previous value: -"Select the type of network traffic to retrieve. Valid options: \"rest\" (only REST/HTTP requests), \"websocket\" (only WebSocket frames), or \"both\" (default)."New value: +"Traffic type to include. Constraints: 'rest', 'websocket', or 'both' (case-insensitive). Interactions: limits results to specified type. Defaults to: \"both\"."
      • changedInput schema / properties / url_filter / description
        Previous value: -"Filter by URL content. Only requests or WebSocket connections whose URL contains this exact string (case-insensitive) will be returned. Leave empty to disable URL filtering."New value: +"Partial URL match (case-insensitive). Constraints: non-empty string. Interactions: filters both REST and WebSocket URLs; empty string disables filtering. Defaults to: None (no URL filtering)."
      • changedInput schema / properties / ws_content_filter / description
        Previous value: -"Filter WebSocket frames by their payload content. Only frames whose payload data contains this exact string (case-insensitive) will be returned."New value: +"WebSocket payload substring match (case-insensitive). Constraints: non-empty string. Interactions: applies only when type_filter includes 'websocket'; filters by payload content. Defaults to: None (no content filtering)."
      • changedInput schema / properties / ws_direction_filter / description
        Previous value: -"Filter WebSocket frames by their transmission direction. Valid options: \"sent\" (client to server), \"received\" (server to client), or \"both\" (default)."New value: +"WebSocket frame direction filter. Constraints: 'sent', 'received', or 'both'. Interactions: applies only when type_filter includes 'websocket'. Defaults to: \"both\"."
    • Changedinspect_dom3 fields changed
      • changedInput schema / properties / after / description
        Previous value: -"Optional: Number of characters to include after the match (default 200)"New value: +"Characters to include after the match. Constraints: non-negative integer. Interactions: only applies if 'query' provided. Defaults to: 200."
      • changedInput schema / properties / before / description
        Previous value: -"Optional: Number of characters to include before the match (default 200)"New value: +"Characters to include before the match. Constraints: non-negative integer. Interactions: only applies if 'query' provided. Defaults to: 200."
      • changedInput schema / properties / query / description
        Previous value: -"Optional: Search for this specific text within the DOM"New value: +"Text pattern to search for in the DOM (case-sensitive). Constraints: any string. Interactions: when provided, returns context snippet instead of full HTML. Defaults to: None (returns full HTML if omitted)."
    • Changednavigate1 field changed
      • addedInput schema / properties / url / description
        Added value: +"Target URL to navigate to. Constraints: valid absolute URL (http/https/file). Interactions: navigation is blocked if MCP server started with 'local' flag and URL is not localhost/127.0.0.1/192.168.x.x/*.local. Defaults to: None (required)."
    • Changedprofile_page_performance3 fields changed
      • changedInput schema / properties / action / description
        Previous value: -"Action to perform right after starting the trace. Can be \"none\" (default) or \"reload\"."New value: +"Action to trigger during tracing. Constraints: 'none' or 'reload'. Interactions: 'reload' restarts page recording from initial load (useful with disable_cache=true). Defaults to: \"none\"."
      • changedInput schema / properties / disable_cache / description
        Previous value: -"If true, disables the network cache before profiling and restores it after. Useful with action=\"reload\" to simulate a cold start."New value: +"Disable network cache during trace. Constraints: boolean. Interactions: when true with action='reload', simulates cold start; cache restored after profiling. Defaults to: false."
      • changedInput schema / properties / duration_ms / description
        Previous value: -"Duration to record the trace in milliseconds. Defaults to 3000ms. Keep it between 1000 and 10000."New value: +"Recording duration in milliseconds. Constraints: integer between 500 and 15000. Interactions: longer duration captures more data; use 3000-5000 for typical pages. Defaults to: 3000."
    • Changedremove_breakpoint1 field changed
      • addedInput schema / properties / breakpoint_id / description
        Added value: +"Unique identifier of the breakpoint (returned from set_breakpoint). Constraints: non-empty string matching format from set_breakpoint response. Interactions: must correspond to an active breakpoint or operation will fail."
    • Changedrestart_chrome1 field changed
      • addedInput schema / properties / proxy_server / description
        Added value: +"Proxy server URL (e.g., 'http://proxy.example.com:8080'). Constraints: valid proxy URL with protocol and port. Interactions: applied to new Chrome instance; requires 'enable_proxy_auth' for authenticated proxies. Defaults to: None (no proxy)."
    • Changedscroll4 fields changed
      • changedInput schema / properties / pages / description
        Previous value: -"Optional: Number of viewport heights to scroll vertically"New value: +"Number of viewport heights to scroll vertically. Constraints: positive float (e.g., 1.5 = 1.5Γ— viewport height). Interactions: takes precedence over 'y' parameter if both provided; ignored if 'selector' provided. Defaults to: None."
      • changedInput schema / properties / selector / description
        Previous value: -"Optional: CSS selector of the element to scroll into view"New value: +"CSS selector of element to scroll into view. Constraints: valid CSS selector string. Interactions: takes precedence over 'x', 'y', 'pages' if provided; fails if element not found. Defaults to: None."
      • changedInput schema / properties / x / description
        Previous value: -"Optional: Number of pixels to scroll horizontally (positive for right, negative for left)"New value: +"Horizontal scroll distance in pixels. Constraints: integer (positive=right, negative=left). Interactions: ignored if 'selector' is provided; combined with 'y' for diagonal scrolling. Defaults to: 0 (no horizontal scroll)."
      • changedInput schema / properties / y / description
        Previous value: -"Optional: Number of pixels to scroll vertically (positive for down, negative for up)"New value: +"Vertical scroll distance in pixels. Constraints: integer (positive=down, negative=up). Interactions: ignored if 'selector' or 'pages' is provided; overridden by 'pages'. Defaults to: 0 (no vertical scroll)."
    • Changedsearch_scripts1 field changed
      • addedInput schema / properties / query / description
        Added value: +"Text pattern or special command to search for. Constraints: non-empty string (empty string returns cached script count). Interactions: '@source' returns first 1000 chars of each script; 'debug' returns script lengths and errors. Defaults to: None (required)."
    • Changedsend_cdp_command2 fields changed
      • changedInput schema / properties / method / description
        Previous value: -"The CDP method name (e.g., 'DOM.getDocument')."New value: +"CDP protocol method name (e.g., 'DOM.getDocument', 'Runtime.evaluate'). Constraints: valid CDP domain.method format. Interactions: method must be recognized by Chrome protocol version."
      • changedInput schema / properties / params / description
        Previous value: -"A JSON string representing the parameters for the CDP command (e.g., '{\"url\": \"https://example.com\"}'). Omit or provide '{}' if no parameters are needed."New value: +"JSON-formatted parameters for the CDP command. Constraints: valid JSON object string. Interactions: Page.navigate URLs subject to local-only restrictions; empty string or '{}' for no parameters. Defaults to: None."
    • Changedset_breakpoint5 fields changed
      • addedInput schema / properties / column_number / description
        Added value: +"Column number within the line. Constraints: non-negative integer. Interactions: optional; narrower precision if provided. Defaults to: start of line (0)."
      • addedInput schema / properties / line_number / description
        Added value: +"Line number where breakpoint is set (0-indexed). Constraints: non-negative integer, must be within script bounds. Interactions: required parameter; combined with 'column_number' to pinpoint exact location."
      • addedInput schema / properties / script_hash / description
        Added value: +"Script hash to identify the target script. Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Defaults to: None."
      • addedInput schema / properties / script_id / description
        Added value: +"Script ID (from Debugger.scriptParsed event). Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Interactions: mutually exclusive with 'script_hash' and 'url' (first match wins). Defaults to: None."
      • addedInput schema / properties / url / description
        Added value: +"Script URL to match. Constraints: one of 'script_hash', 'script_id', or 'url' must be provided. Interactions: mutually exclusive with 'script_hash' and 'script_id'. Defaults to: None."
  5. 24 tool updatesv1.0.0
    • First observedcapture_screenshot
    • First observedclick_element
    • First observedenable_proxy_auth
    • First observedevaluate_js
    • First observedevaluate_on_call_frame
    • First observedfill_input
    • First observedget_console_logs
    • First observedget_custom_events
    • First observedget_network_logs
    • First observedget_performance_metrics
    • First observedinspect_dom
    • First observednavigate
    • First observedpause_on_load
    • First observedprofile_page_performance
    • First observedreload
    • First observedremove_breakpoint
    • First observedrestart_chrome
    • First observedresume
    • First observedscroll
    • First observedsearch_scripts
    • First observedsend_cdp_command
    • First observedset_breakpoint
    • First observedstep_over
    • First observedstop_chrome

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: debugging tools (pause_on_load, step_over, resume, set_breakpoint, etc.) are separated by action, instance/tab management covers open/list/close/switch, and WebMCP tools are prefixed clearly. Even closely related tools like evaluate_js vs evaluate_on_call_frame are differentiated by scope (page vs call frame). No two tools appear to do the same job.

Naming Consistency5/5

All tools follow a consistent verb_noun (or verb_preposition_noun) pattern in snake_case, e.g., click_element, list_instances, set_breakpoint, webmcp_invoke_tool. There is no mixing of camelCase or inconsistent verb styles, and the prefixing (webmcp_, get_, list_) is uniform across domains.

Tool Count3/5

With 35 tools, the server is on the heavy side, but the breadth of Chrome debugging (DOM, debugging, instance/tab management, network, performance, WebMCP, CDP) justifies a larger surface. It exceeds the typical 3-15 range, yet each tool addresses a distinct need and none feel redundant, so it's more comprehensive than bloated.

Completeness4/5

The surface covers the core debugging lifecycle (breakpoints, stepping, resume, evaluation), full instance/tab management, network/console inspection, performance profiling, and WebMCP support. Minor gaps exist (e.g., no conditional breakpoints or device emulation tools), but these can be handled via send_cdp_command, so the domain is largely covered with no dead ends.

Maintenance

ActivityMaintained
ResponsivenessWithin a week

Related MCP Connectors

Related MCP Servers

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/raultov/chrome-debug-mcp'

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