list_destinations
All supported destinations with slugs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
All supported destinations with slugs.
| 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?
No annotations are provided, so the description carries the full behavioral burden and fails it: nothing is said about whether the result is exhaustive, whether it is cached/static, pagination, or auth requirements. The only behavioral hint is 'with slugs', which implies the payload includes a slug identifier alongside destination names, and that is barely one step beyond the schema.
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 six-word fragment with no filler, and the scope qualifier is front-loaded. It is efficient, though it is a noun phrase rather than a sentence, which costs it a point on structure rather than brevity.
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?
There is no output schema, no annotations, and no parameters, so the description is the only carrier of information, yet it never describes the shape of the returned list (e.g. array of {name, slug} objects) or its completeness. For a reference-data listing tool whose only value is what it returns, this is under-specified.
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 defines zero parameters, so there are no parameter semantics to clarify and the baseline of 4 applies. The description does not need to explain arguments and correctly does not invent any.
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 fragment names the resource ('destinations') and the scope ('all supported') plus the key returned field ('slugs'), so an agent knows this is a listing of all destinations. However, there is no verb and no differentiation from siblings such as list_nationalities or visa_lookup, which are structurally similar lookups in the same visa/travel domain.
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 guidance on when to call this versus the sibling lookup tools. 'All supported destinations' implies a bulk-enumeration use case but never states it as a condition selecting this tool over visa_lookup or passport_power.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.