get_airport_info
Get airport information including name, city, country, timezone, and coordinates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| iata | No | IATA airport code (default: JFK) | JFK |
Get airport information including name, city, country, timezone, and coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| iata | No | IATA airport code (default: JFK) | JFK |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations; description only says 'Get', implying read-only, but does not disclose any other behavioral traits like rate limits, error handling, or idempotency. Minimal information beyond the obvious.
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?
Single sentence, front-loaded, every word valuable. No unnecessary content.
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?
Lists return fields, which is helpful, but lacks details on error handling, return structure (single object vs list), or behavior for invalid codes. Moderately complete for a simple tool but gaps remain.
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% with the parameter 'iata' already described as 'IATA airport code (default: JFK)'. The tool description adds no new semantics beyond the schema, so baseline 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 clearly states the tool retrieves airport information (name, city, country, timezone, coordinates) for a given IATA code, distinguishing it from the sibling tool get_flight_departures which likely deals with flights.
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 guidelines on when to use this tool versus alternatives; no mention of contexts, prerequisites, or exclusions. The sibling tool exists but is not referenced.
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.
The two tools target distinct aspects: airport static information and departures. No overlap in purpose.
Both tools follow the 'get_<noun>' pattern with snake_case, perfectly consistent.
Two tools is borderline; while the server purpose is narrow, it lacks coverage for a comprehensive flight data service.
Missing arrivals, flight status, airline info, and other common flight data operations. Significant gaps for the claimed domain.