tab_list
Use this tool to list all open browser tabs, enabling quick identification of the page to debug.
Instructions
List all open browser tabs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Use this tool to list all open browser tabs, enabling quick identification of the page to debug.
List all open browser tabs.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It clearly signals a read-only enumeration operation, but provides no detail about ordering, scope across windows, or the response shape. Acceptable for a simple list tool, but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. Every word adds meaning and it is immediately understandable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there are no parameters and no output schema, the description tells an agent enough to invoke the tool correctly. It could be slightly more complete by mentioning what information is returned, but the tool is simple enough that this is not a major gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameterswes, so there is nothing for the description to explain. The schema coverage is complete, and the baseline for zero-parameter tools is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb, 'List', with a clear resource, 'all open browser tabs'. It clearly distinguishes itself from siblings like tab_open, tab_navigate, and tab_close by indicating this tool only enumerates tabs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The use case is implied: call this tool when you need to know which browser tabs are currently open. However, there is no explicit guidance about when to prefer this over related tools or mention of any alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.