Skip to main content
Glama

countries

Server Details

Countries MCP — world country data from REST Countries API v3.1

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
pipeworx-io/mcp-countries
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.6/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: filtering by currency, language, or region, retrieving by code, and searching by name. The descriptions specify different return fields and use cases, leaving no ambiguity about which tool to select for a given query.

Naming Consistency5/5

All tools follow a consistent snake_case pattern with clear verb_noun or noun_by_noun structures (e.g., countries_by_currency, get_country_by_code). The naming is predictable and readable across the set.

Tool Count5/5

With 5 tools, this server is well-scoped for a countries information service. Each tool serves a specific lookup or filtering need without redundancy, making the count appropriate and manageable for the domain.

Completeness4/5

The tools cover key queries for country data: filtering by attributes (currency, language, region), retrieving by code, and searching by name. A minor gap is the lack of a tool to list all countries without filters, but agents can work around this using the region tool or search.

Available Tools

5 tools
countries_by_currencyAInspect

Find all countries that use a given currency. Returns name, capital, and region.

ParametersJSON Schema
NameRequiredDescriptionDefault
currencyYesCurrency code or name (e.g. "eur", "usd", "dollar")
Behavior3/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 the return format ('name, capital, and region'), which is helpful, but lacks details on error handling, rate limits, or authentication needs. No contradiction with annotations exists.

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 appropriately sized with two sentences: one stating the purpose and one specifying the return format. It is front-loaded and wastes no words, making it highly efficient.

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?

Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is mostly complete. It covers purpose and return values, but could improve by addressing behavioral aspects like error cases or usage context.

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 100%, so the schema already documents the 'currency' parameter. The description does not add meaning beyond what the schema provides, such as examples or edge cases, meeting the baseline for high coverage.

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 clearly states the tool's purpose with a specific verb ('Find') and resource ('all countries that use a given currency'), and distinguishes it from siblings by focusing on currency-based lookup rather than language, region, code, or general search.

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

Usage Guidelines3/5

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

The description implies usage when currency-based country lookup is needed, but does not explicitly state when to use this tool versus alternatives like 'countries_by_language' or 'search_countries'. No exclusions or prerequisites are mentioned.

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

countries_by_languageAInspect

Find all countries where a given language is spoken. Returns name, capital, region, and population.

ParametersJSON Schema
NameRequiredDescriptionDefault
languageYesLanguage name (e.g. "spanish", "french", "arabic")
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates the tool returns specific fields, implying a read-only operation, but does not mention potential limitations like partial matches, case sensitivity, or error handling. It adds some context (return fields) but lacks details on performance, rate limits, or data freshness.

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, efficient sentence that front-loads the core purpose and follows with return details. Every word earns its place, with no redundancy or unnecessary elaboration, making it easy for an agent to parse quickly.

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?

Given the tool's low complexity (one parameter, no output schema, no annotations), the description is adequate but has gaps. It explains what the tool does and what it returns, but lacks usage guidelines and behavioral details like error cases or data scope. It meets minimum viability but could be more complete for optimal agent use.

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?

The input schema has 100% description coverage, so the parameter 'language' is well-documented in the schema. The description adds no additional parameter details beyond implying the tool uses this input, but with only one parameter and high schema coverage, the baseline is 3. The description's clarity on output compensates slightly, raising it to 4.

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 clearly states the specific action ('Find all countries where a given language is spoken') and the resource ('countries'), distinguishing it from siblings like countries_by_currency or countries_by_region. It also specifies the exact return fields (name, capital, region, population), making the purpose unambiguous.

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?

The description provides no guidance on when to use this tool versus alternatives such as search_countries or get_country_by_code. It mentions the parameter 'language' but does not specify use cases, exclusions, or comparisons to sibling tools, leaving the agent to infer usage from the tool name alone.

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

countries_by_regionAInspect

List all countries in a geographic region with name, capital, population, and flag.

ParametersJSON Schema
NameRequiredDescriptionDefault
regionYesRegion name — one of: africa, americas, asia, europe, oceania
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states it's a list operation but doesn't mention whether it's read-only, if there are rate limits, authentication needs, pagination behavior, or error handling. For a tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves beyond basic functionality.

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, well-structured sentence that efficiently communicates the tool's purpose, scope, and output. Every word earns its place with no redundancy or unnecessary information, making it appropriately sized and front-loaded.

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?

Given the simple single parameter with full schema coverage and no output schema, the description adequately covers the basic functionality. However, it lacks details about behavioral aspects (rate limits, errors, etc.) and doesn't explain the return format beyond listing fields, leaving some gaps in completeness for practical use.

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 100%, with the region parameter fully documented in the schema (including allowed values). The description adds no additional parameter semantics beyond what's in the schema, so it meets the baseline score of 3 where the schema does the heavy lifting.

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 clearly states the specific action ('List all countries'), target resource ('in a geographic region'), and output fields ('with name, capital, population, and flag'). It distinguishes from siblings like 'countries_by_currency' or 'search_countries' by specifying region-based filtering rather than currency, language, code, or general search.

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

Usage Guidelines3/5

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

The description implies usage for retrieving countries by region, but provides no explicit guidance on when to use this tool versus alternatives like 'countries_by_currency' or 'search_countries'. It mentions the region parameter but doesn't clarify scenarios where region-based listing is preferred over other filtering methods.

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

get_country_by_codeAInspect

Get full country information by ISO 3166-1 alpha-2 (e.g. "US") or alpha-3 (e.g. "USA") code.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesISO 3166-1 alpha-2 or alpha-3 country code
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 describes the lookup behavior but lacks details on error handling (e.g., invalid codes), rate limits, authentication needs, or what 'full country information' includes. This is a significant gap for a tool with no annotation coverage.

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, efficient sentence with zero waste. It is front-loaded with the core purpose and includes necessary examples, making it appropriately sized and well-structured.

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?

Given the tool's low complexity (1 parameter, no nested objects) and high schema coverage, the description is adequate but incomplete. It lacks output details (no output schema) and behavioral context, which is needed for full understanding, especially with no annotations.

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 100%, so the schema already documents the parameter. The description adds minimal value by reiterating the code format (ISO 3166-1 alpha-2/alpha-3) and providing examples ('US', 'USA'), but no additional semantics beyond what the schema provides.

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 clearly states the tool's purpose with a specific verb ('Get') and resource ('full country information'), and it distinguishes from siblings by specifying the lookup method (by ISO code) rather than by currency, language, region, or search.

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

Usage Guidelines3/5

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

The description implies usage context by specifying the input format (ISO codes), but it does not explicitly state when to use this tool versus alternatives like 'search_countries' or other sibling tools. No exclusions or prerequisites are mentioned.

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

search_countriesBInspect

Search for countries by name. Returns common name, official name, capital, region, subregion, population, area, languages, currencies, and flag emoji.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesCountry name to search for (partial matches are supported)
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds value by specifying the return fields (common name, official name, capital, etc.) and flag emoji, which helps understand output format. However, it doesn't mention behavioral traits like rate limits, error handling, or whether the search is case-sensitive, leaving gaps in transparency.

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

Conciseness4/5

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

The description is appropriately sized with two sentences: one stating the purpose and parameter, and another detailing the return values. It's front-loaded with the core functionality, and every sentence adds value without waste. However, it could be slightly more structured by separating usage guidance from output details.

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?

Given the tool's low complexity (1 parameter, no annotations, no output schema), the description is somewhat complete but has gaps. It covers the purpose and output fields, which is helpful, but lacks details on behavioral aspects like performance or limitations. Without annotations or output schema, more context on usage and results would improve completeness.

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 100%, so the schema already documents the 'query' parameter with its type and description. The description adds minimal semantics beyond the schema by implying the search is by name, but it doesn't provide additional details like search algorithm or match specificity beyond what's in the schema. Baseline 3 is appropriate as the schema does the heavy lifting.

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 clearly states the tool's purpose: 'Search for countries by name' specifies the verb (search) and resource (countries). It distinguishes from siblings by focusing on name search rather than currency, language, region, or code-based lookup. However, it doesn't explicitly mention how it differs from siblings beyond the search parameter.

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

Usage Guidelines3/5

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

The description implies usage context through 'Search for countries by name,' suggesting this tool is for name-based queries. However, it doesn't provide explicit guidance on when to use this vs. alternatives like 'countries_by_currency' or 'get_country_by_code,' nor does it mention any exclusions or prerequisites for usage.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.