Skip to main content
Glama

Countries

countries
Read-onlyIdempotent

Country reference with capital city, currency, etc.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
searchNo
country_iso2No

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoArray of country objects
paginationNoPagination metadata

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed11 schema fields changed
    • changedOutput schema / properties / data / items / properties / capital / description
      Previous value: -"Capital city"New value: +"Capital city; null for some territories"
    • changedOutput schema / properties / data / items / properties / capital / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / data / items / properties / country_iso_numeric / description
      Previous value: -"ISO 3166-1 numeric code"New value: +"ISO 3166-1 numeric code (returned as a string)"
    • changedOutput schema / properties / data / items / properties / country_iso_numeric / type
      Previous value: -"number"New value: +"string"
    • changedOutput schema / properties / data / items / properties / currency_code / description
      Previous value: -"ISO 4217 currency code"New value: +"ISO 4217 currency code; null for some territories"
    • changedOutput schema / properties / data / items / properties / currency_code / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / data / items / properties / currency_name / description
      Previous value: -"Currency name"New value: +"Currency name; null for some territories"
    • changedOutput schema / properties / data / items / properties / currency_name / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • addedOutput schema / properties / data / items / properties / fips_code
      Added value: +{
      +  "description": "FIPS country code; null for some territories",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedOutput schema / properties / data / items / properties / phone_prefix
      Added value: +{
      +  "description": "International dialling prefix; null for some territories",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedOutput schema / properties / data / items / properties / population
      Added value: +{
      +  "description": "Population (returned as a string); null for some territories",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
  2. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "country_iso2": "US"
      +  },
      +  {
      +    "search": "Japan"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "data": {
      +      "description": "Array of country objects",
      +      "items": {
      +        "properties": {
      +          "capital": {
      +            "description": "Capital city",
      +            "type": "string"
      +          },
      +          "continent": {
      +            "description": "Continent name",
      +            "type": "string"
      +          },
      +          "country_iso2": {
      +            "description": "ISO 3166-1 alpha-2 code",
      +            "type": "string"
      +          },
      +          "country_iso3": {
      +            "description": "ISO 3166-1 alpha-3 code",
      +            "type": "string"
      +          },
      +          "country_iso_numeric": {
      +            "description": "ISO 3166-1 numeric code",
      +            "type": "number"
      +          },
      +          "country_name": {
      +            "description": "Country name",
      +            "type": "string"
      +          },
      +          "currency_code": {
      +            "description": "ISO 4217 currency code",
      +            "type": "string"
      +          },
      +          "currency_name": {
      +            "description": "Currency name",
      +            "type": "string"
      +          },
      +          "gmt": {
      +            "description": "GMT offset",
      +            "type": "string"
      +          },
      +          "gmt_offset_seconds": {
      +            "description": "GMT offset in seconds",
      +            "type": "number"
      +          },
      +          "is_eu": {
      +            "description": "Is EU member state",
      +            "type": "boolean"
      +          },
      +          "tld": {
      +            "description": "Top-level domain",
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "pagination": {
      +      "description": "Pagination metadata",
      +      "properties": {
      +        "count": {
      +          "type": "number"
      +        },
      +        "limit": {
      +          "type": "number"
      +        },
      +        "offset": {
      +          "type": "number"
      +        }
      +      },
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
  3. First observed

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior, so the description need not repeat safety traits. However, it adds no behavioral context such as return shape, list vs single object, or interaction between parameters; it merely states content fields.

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 a single sentence with no filler, front-loading the core content. It earns its place despite being brief.

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

Completeness3/5

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

For a simple read-only reference with output schema and annotations, the description is minimally adequate but leaves important gaps: it doesn't explain search behavior or the optional limit parameter. More detail would help the agent invoke it correctly.

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

Parameters1/5

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

Schema description coverage is 0% and the description never mentions any of the three parameters (limit, search, country_iso2). It fails to clarify that country_iso2 accepts an ISO code and that search matches country names, leaving the agent without parameter semantics.

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 identifies the tool as a country reference with capital city, currency, and other data, making its purpose clear though it lacks an explicit verb such as 'get' or 'search'. It distinguishes the countries resource from sibling tools like cities and airlines.

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 is provided on when to use this tool versus alternatives; it does not mention search by name/ISO code, pagination, or compare with cities/airlines. The intended usage is only implied by the tool name and schema examples.

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

B3.4/5.0
Disambiguation2/5

Many tools have overlapping purposes, such as ask_pipeworx, ask_pipeworx_beta, and deep_research all routing queries, and the polymarket family (arbitrage, edges, edge_tracker, fill_risk) covering similar ground. While descriptions are detailed, an agent could easily select the wrong tool.

Naming Consistency2/5

Tool names mix bare nouns (airlines, airports, flights) with verb phrases (compare_entities, resolve_entity) and standalone verbs (remember, forget), with no consistent verb_noun pattern. Names like ask_pipeworx_beta and scan_competitor_ai_presence are internally inconsistent with the rest.

Tool Count2/5

37 tools is far beyond the typical scope for a single server, and many are unrelated to the aviation theme, suggesting a lack of focus. The core aviation functionality only accounts for 6 of the tools.

Completeness3/5

The aviation tools (airlines, airports, flights, routes, cities, countries) cover basic lookups, but advanced operations like delay statistics or aircraft data are absent. The unrelated tools do not fill these gaps, and the overall surface feels shallow for a server claiming to be an Aviationstack.