Browser Go Back
browser_go_backNavigate back to the previous page in a specific browser session to undo the last navigation step.
Instructions
Go back in browser history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes |
browser_go_backNavigate back to the previous page in a specific browser session to undo the last navigation step.
Go back in browser history.
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes |
Changes observed during successful MCP inspections.
v0.1.14Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden of behavioral disclosure. It only states the action; it does not warn about behavior when history is empty, whether page state changes, or whether a valid session is required.
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. It is concise, though it omits useful behavioral and parameter context, so it is efficient but not complete.
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?
For a tool with no annotations, no output schema, and an undocumented required parameter, a one-sentence description is insufficient. It leaves the agent to guess about session expectations and edge-case behavior, even though the operation itself is simple.
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 schema provides no description for sessionId (coverage 0%), and the description never mentions the parameter. The agent must infer that sessionId identifies the browser session from the name alone, which does not fully compensate for the missing schema documentation.
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 states a specific action—'Go back in browser history'—with a clear verb and resource. It is distinct from browser_navigate by implying backward traversal rather than arbitrary URL entry, though it doesn't explicitly name sibling differentiation.
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?
No guidance is provided on when to use this tool versus browser_navigate or other browser actions. There are no conditions, exclusions, or alternative tool references, so an agent must infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.