list_collections
List all your memory collections to view stored information across conversations.
Instructions
List all your collections.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List all your memory collections to view stored information across conversations.
List all your collections.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.3.3Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. The word 'List' implies a read-only, non-destructive operation, which is adequate. However, no details are given about pagination, ordering, or whether the full set of collections is always returned. The description is minimal but not misleading.
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 unnecessary words. Every part earns its place: 'List all your collections' is direct and complete for a parameterless tool.
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?
The tool has no output schema and no annotations, so the description should explain what the output looks like. It only says 'List all your collections' without describing the return format (e.g., list of collection IDs, names, or objects). This leaves the agent uncertain about the result structure, making it incomplete.
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?
There are no parameters, so the schema provides zero information. The description compensates by explaining what the tool does (list collections). Since 0 parameters has a baseline of 4, and the description fulfills that role, the score is appropriate.
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 clearly states the action ('List') and the resource ('all your collections'). It distinguishes from sibling tools like create_collection, delete_collection, and get_collection by focusing on listing all. However, it could be more specific about what 'collections' includes (e.g., names only or full metadata).
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 alternatives such as get_collection (for a single collection) or search (for filtered results). The description lacks any when-to-use or when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.