update_recurring
Update an existing recurring transaction by ID to change its name or toggle active status.
Instructions
Update an existing recurring transaction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | No | ||
| active | No |
Update an existing recurring transaction by ID to change its name or toggle active status.
Update an existing recurring transaction.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | No | ||
| active | No |
Changes observed during successful MCP inspections.
v3.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Update' implies mutation but does not explain partial-update behavior, whether provided fields replace existing values, required permissions, or side effects.
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 sentence with no filler, making it easy to parse. However, it is so minimal that it under-specifies the tool's behavior rather than being efficiently informative.
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 mutation tool with three parameters, no output schema, and no annotations, the description omits essential context: updatable fields, partial update semantics, and response behavior. An agent cannot fully understand the tool's contract from this description alone.
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 description coverage is 0% and the description names no parameters. It does not explain that id identifies the target recurring transaction or that name and active are the updatable fields, forcing the agent to infer semantics only from property names.
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 states the verb 'Update' and the resource 'existing recurring transaction,' clearly distinguishing it from create_recurring and delete_recurring. However, it does not specify which fields or aspects can be updated, leaving some scope ambiguity.
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?
There is no guidance about when to use this tool versus get_recurring, create_recurring, or delete_recurring. It also does not mention prerequisites such as the recurring transaction needing to exist before updating.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.