browser_sessionstorage_delete
Remove a specific sessionStorage item by its key to clear temporary browser data and reset session state.
Instructions
Delete a sessionStorage item by key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Remove a specific sessionStorage item by its key to clear temporary browser data and reset session state.
Delete a sessionStorage item by key.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Changes observed during successful MCP inspections.
v1.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description alone must disclose behavioral traits. It states that the action is a delete, but does not mention irreversibility, behavior when the key is missing, scope (page vs session), or side effects. This is thin for a destructive operation.
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?
A single, compact sentence that states the action and parameter without any wordiness. Every word earns its place, and the core behavior is front-loaded.
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 simple one-parameter destructive tool, the description covers the essential action and parameter. However, without annotations or an output schema, it omits important behavioral context like irreversibility and missing-key behavior, which matters for safe invocation.
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?
Schema coverage is 0%, so the description must compensate. 'By key' clarifies that the single parameter identifies which sessionStorage item to remove, connecting the schema field to the operation. However, it adds no detail about the key format or value expectations.
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 ('Delete') and a clear resource ('sessionStorage item by key'), which precisely communicates a single-item deletion. This effectively distinguishes it from sibling tools like clear (all items) and get/set (read/write operations).
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 description provides no guidance on when to use this tool versus alternatives such as browser_sessionstorage_clear or browser_sessionstorage_delete. The distinction is only implicit from the name and wording, not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.