Save a note
save-noteStore a text note under a specified key for later retrieval.
Instructions
Saves a text note under a given key for later retrieval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| text | Yes |
save-noteStore a text note under a specified key for later retrieval.
Saves a text note under a given key for later retrieval.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| text | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing side effects, but it only says 'saves' without mentioning behaviors like overwriting existing notes, idempotency, or error handling. This is a noticeable gap.
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, clear, and front-loaded sentence with no filler. It efficiently conveys the core operation.
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 tool with two string parameters, the description is mostly complete: it explains the operation and the roles of key and text. However, it would benefit from noting whether saving overwrites an existing key, but given the low complexity, it is still adequate.
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 has no parameter descriptions (0% coverage), so the description must compensate. It mentions 'key' and 'text note,' implying key is the identifier and text is the content, but it lacks specifics about formats, uniqueness, or constraints.
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 (saves), the resource (a text note), and the purpose (under a given key for later retrieval). It is unambiguous and distinct from the sibling tools.
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 implies usage through the phrase 'for later retrieval,' but it does not explicitly state when to use this tool versus alternatives or mention any exclusions. No direct guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.