Skip to main content
Glama
Reese-max

Travel Planning MCP

by Reese-max

get_place

Retrieve a normalized place by its unique ID to obtain consistent location details for travel planning workflows.

Instructions

Read one normalized place through the configured PlaceProvider.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
place_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It says 'Read' implying a safe read operation, but it does not disclose what 'normalized' means, whether the place is cached, what happens if the place_id is not found, or any provider-specific behavior. Minimal behavioral context beyond the verb.

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?

One sentence, no waste, and the key action and resource are front-loaded. It is appropriately sized for a simple read tool.

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

Completeness2/5

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

For a simple read tool with one parameter, the description is minimal but lacks any mention of return value, error behavior, or provider-specific nuances. Since there is no output schema and no annotations, the description should provide more context about what 'normalized' means and what the agent can expect.

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

Parameters3/5

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. It does not explain the place_id parameter beyond the schema's uuid format. However, with only one parameter named place_id, the meaning is fairly self-evident. The description adds no semantic detail about the parameter, so a baseline 3 is appropriate.

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

Purpose4/5

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

The description states a specific verb ('Read') and resource ('one normalized place') and references the configured PlaceProvider, which distinguishes it from sibling tools like search_places and get_trip. It is clear but does not explicitly differentiate from all siblings.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives. It does not mention that search_places is for finding places or that get_trip_context might be relevant. The context is implied by the name and description but not stated.

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