list_storage
Retrieve all keys stored in shared storage to identify available outputs and data from agent tasks.
Instructions
List all keys in shared storage
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve all keys stored in shared storage to identify available outputs and data from agent tasks.
List all keys in shared storage
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.3.2Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. 'List all keys' clearly conveys a read-only enumeration behavior and the shared-storage scope, but it does not disclose potential edge cases such as pagination, ordering, or behavior with a large number of keys. Still, the operation is inherently non-destructive, which is evident from the wording.
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, focused sentence with no filler or redundant detail. It states exactly what the tool does in the fewest words possible.
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 zero-parameter, no-output-schema tool, the description is fully sufficient. 'List all keys in shared storage' tells an agent both what to expect as input and what the result will be, with no hidden prerequisites or complexity left unexplained.
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 parameters, so there are no parameter semantics to explain. The schema already documents this completely with an empty properties object, matching the baseline for a no-parameter tool.
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') and a precise resource ('all keys in shared storage'), making the tool's purpose immediately clear. It implicitly distinguishes itself from read_storage by focusing on key enumeration rather than reading values, though it doesn't explicitly name an alternative.
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 intended use is implied: call this tool when you need to enumerate keys in shared storage. However, there is no explicit guidance on when to prefer this over read_storage or storage_cleanup, nor any exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.