get_country_info
Get travel country facts: capital, region, income level via World Bank API. code: ISO 3166-1 alpha-2 (US, FR, UA). Returns country profile fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Get travel country facts: capital, region, income level via World Bank API. code: ISO 3166-1 alpha-2 (US, FR, UA). Returns country profile fields.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must cover behavioral traits. It only mentions data source and returned fields, but omits details like whether it is read-only, any network dependencies, rate limits, or authentication requirements.
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?
The description is two sentences with no wasted words. It front-loads purpose and data source, then clarifies the parameter and return value.
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?
Given the simple input schema and no output schema, the description adequately covers purpose, data source, parameter format, and return fields. It could mention error handling or limitations, but for a lookup tool it is sufficient.
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 schema has a single string parameter 'code' with no description (0% coverage). The description adds value by specifying the format (ISO 3166-1 alpha-2) and providing examples (US, FR, UA), aiding correct usage.
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 travel country facts (capital, region, income level) via the World Bank API. It distinguishes itself from sibling tools like convert_travel_currency and get_weather by focusing on country information.
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 usage when country facts are needed, but does not explicitly state when to use this tool versus alternatives or mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.