Skip to main content
Glama

Get Itinerary Dossier

get_itinerary_dossier

Read an itinerary's planning dossier: its legs, month-by-month seasonality, cost model, booking order, field notes and open choices. Public — no token needed. Returns nulls for blocks the itinerary doesn't have; older itineraries have none of them.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itinerary_idYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the tool is public (no auth), that it returns nulls for absent blocks, and that older itineraries have none of them. This is valuable behavioral context for an agent. The description could be slightly richer (e.g., clarifying if nin is idempotent or if there are rate limits), but for a read-only tool with no annotations, this is well above average.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences long with no filler. The first sentence front-loads the purpose and contents, the second adds auth context, and the third explains the return behavior. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and only one simple parameter, the description covers the key aspects: what it reads, what it returns (with nulls for missing blocks and note on older itineraries), and auth requirements. It doesn't explain pagination, size limits, or error conditions, but for a single-object read with an implied one-to-one mapping, this is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There is only one parameter (itinerary_id) and schema description coverage is 0%, so the description must compensate. The description states that the tool reads an itinerary's dossier and implies that the input is the itinerary identifier. While it doesn't elaborate on the UUID format (the schema does that), it adds essential context about what the parameter identifies and what the output relates to, which is sufficient for an agent to infer the parameter's meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the verb 'Read' and specifies the resource 'itinerary's planning dossier', then itemizes the contents (legs, seasonality, cost model, booking order, field notes, open choices). This clearly distinguishes it from sibling tools like 'get_itinerary' (which likely returns a simpler overview) and 'set_itinerary_dossier' (which writes).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'Public — no token needed', which is a clear usage precondition. It also notes that older itineraries return nulls for blocks, implying this tool is appropriate for retrieving detailed planning data. However, it does not explicitly state when to choose this over alternatives like 'get_itinerary' or 'get_pricing', nor does it mention any exclusions for using it on itineraries that lack the dossier.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Every tool targets a distinct operation or resource: create, read, update, delete for itineraries; add/delete for activities and days; content/destination retrieval; pricing and booking services. The two aliases are explicitly marked as backward-compatible, so agents can still distinguish them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., create_itinerary, delete_activity, get_itinerary_dossier). Even the aliases (get_wp_content, search_wp_content) adhere to the same convention, ensuring predictability.

Tool Count4/5

23 tools is on the higher side but justified by the domain's complexity: itinerary CRUD, day/activity management, content search, destination lookup, pricing, booking services, and dossier handling. Each tool serves a clear purpose, though minor consolidation could be possible.

Completeness4/5

Covers the full lifecycle for itineraries and most related entities. Missing operations like updating or deleting a day, or updating an activity, are minor gaps that agents can work around by recreating or using get_itinerary. The planning dossier and booking request tools add depth.

Resources