trip_note_update
Update a note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Note title | |
| noteId | Yes | Note ID | |
| content | No | Note content (supports markdown) | |
| noteDate | No | Date to attach the note to (YYYY-MM-DD) |
Update a note
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Note title | |
| noteId | Yes | Note ID | |
| content | No | Note content (supports markdown) | |
| noteDate | No | Date to attach the note to (YYYY-MM-DD) |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already provide readOnlyHint=false and destructiveHint=false, and the description merely says 'Update a note.' It adds no behavioral context such as whether fields are patched or fully replaced, whether auth is required, or any 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 short sentence with no fluff, but it is under-specific rather than effectively concise. It tells the agent no more than the tool name and annotation title already imply.
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 mutating tool with four parameters and no output schema, the description is too thin. It does not explain partial-update semantics, which fields can be changed, or the effect of omitting optional fields, and there is no usage guidance to make the tool complete to invoke correctly.
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 input schema has 100% description coverage for all four parameters, so the schema carries the semantic weight. The description adds no parameter-level detail, but the baseline of 3 is appropriate because there is no gap to compensate for.
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 'Update a note' states a verb and resource, so it is not misleading, but it adds no scope beyond the name/title and reads as a restatement of the annotation title. It does not clarify this is a trip note update or what aspects can be updated, making it only minimally adequate.
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 gives no indication of when to use this tool versus trip_note_create, trip_note_delete, or trip_note_list. There are no exclusions, prerequisites, or alternative routing, so the agent receives no decision support.
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.