Update Booking Notes
neuron_update_booking_notesAdd or update host notes on a booking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Booking UUID | |
| notes | Yes | Host notes text |
neuron_update_booking_notesAdd or update host notes on a booking.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Booking UUID | |
| notes | Yes | Host notes text |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds 'Add or update,' which usefully signals upsert semantics beyond the annotations, but it does not cover permissions, overwrite behavior, or return format.
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?
A single sentence that is front-loaded with the core action and resource, with zero wasted words. It is appropriately sized for this simple two-parameter 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?
Given the tool's simplicity, full schema coverage, and the safety profile already provided by annotations, the description is nearly complete. It could mention edge cases like booking existence or note replacement behavior, but it covers the essential purpose adequately.
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 100%, so both parameters (id and notes) are already documented in the schema. The description does not add any further semantic detail about parameter format or constraints, so the baseline score of 3 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 states a specific verb ('Add or update') and resource ('host notes on a booking'), clearly distinguishing it from other booking operations like cancel_booking or reschedule_booking. It does not explicitly differentiate from sibling update tools, but the resource specificity is strong.
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 when-to-use guidance, prerequisites, or alternatives are given. The description implies usage by stating the operation, but it lacks any explicit context about when this tool should be chosen over others.
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.