Update
updateReplace a memory's content (re-embeds it). Returns the updated memory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| content | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
updateReplace a memory's content (re-embeds it). Returns the updated memory.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| content | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds context beyond these by disclosing that the operation regenerates the embedding and returns the updated memory. It does not contradict the annotations.
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?
One sentence conveys the operation, a meaningful side-effect, and the return value. It is front-loaded and contains no filler or repetition.
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 two-parameter mutation with annotations and an output schema, the description is largely sufficient: it names the action, the affected resource, the embedding side-effect, and the return. It lacks explicit usage differentiation, but the minimal surface area keeps this from being a major gap.
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 0% description coverage, so the description must compensate. It adds meaning for 'content' but leaves 'id' as implicitly identifying a memory; no format, constraints, or behavior for invalid ids are mentioned. This is only partial compensation for the schema gap.
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 (replace) and resource (a memory's content), and adds the side-effect 're-embeds it' plus the expected return. This clearly distinguishes it from sibling tools like remember (create) and forget (delete).
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 tool's behavior implies it should be used when updating an existing memory's content via its id, but the description provides no explicit guidance on when to choose it over remember or other sibling tools, and no exclusions or prerequisites are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.