validate_trip_brief
Validate an explicitly approved brief without saving it or sending email.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes | ||
| internalTest | No | ||
| userApproved | Yes |
Validate an explicitly approved brief without saving it or sending email.
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes | ||
| internalTest | No | ||
| userApproved | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the key behavioral trait that no email is sent and nothing is saved, which is useful. It does not add much beyond that, but 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?
A single sentence that is front-loaded with the action and scope, and immediately states the two exclusions (no saving, no email). Every word earns its place.
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 tool with 3 parameters, 0% schema coverage, and no output schema, the description is too thin. It does not explain what a valid brief looks like, what the request object should contain, what the return value is, or what 'explicitly approved' means in practice. The annotations cover safety but not the operational details an agent needs to call this 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?
Schema description coverage is 0%, so the description must compensate, but it does not explain the meaning of 'request', 'userApproved', or 'internalTest'. The userApproved const=true is visible in the schema, but the description does not clarify what the request object should contain or how internalTest affects behavior.
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 ('validate') and resource ('explicitly approved brief'), and distinguishes itself by noting it does not save or send email. It is clear enough to separate from siblings like create_charter_request, though it does not explicitly name a sibling alternative.
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 the tool is for validation-only workflows and excludes saving/emailing, which gives some context. However, it does not explicitly state when to use this tool versus create_charter_request or get_request_status, nor does it mention the required userApproved=true precondition beyond the schema.
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.