Skip to main content
Glama

Server Details

Search and explore a global travel points-of-interest catalog (cities, countries, POIs).

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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 4.3/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: find similar POIs, get city/country/POI details, list cities/countries, and search POIs. No overlap.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with underscore_case (e.g., find_similar_pois, get_city, list_cities).

Tool Count5/5

Seven tools is well-scoped for a travel POI server, covering essential operations without being excessive or insufficient.

Completeness4/5

Core CRUD-like operations are covered (list, get, search, find similar). Minor gaps like listing all POIs for a city without free text are mitigated by search_pois with city parameter.

Available Tools

7 tools
find_similar_poisFind similar POIsA
Read-only
Inspect

Find the nearest POIs to the given one by tag-cosine similarity (shared distinctive tags) — 'more like this'. Empty when the POI has only generic tags.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPOI UUID or slug.
langNoLanguage for human-readable name/description fields. EN is canonical.en
limitNoMaximum number of similar POIs to return (1-30).

Output Schema

ParametersJSON Schema
NameRequiredDescription
poisYes
countYes
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds valuable behavioral details: the similarity algorithm (tag-cosine) and the condition for empty results, enhancing beyond annotations without contradiction.

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?

Two short sentences with no wasted words. The structure is front-loaded with the core action and then an edge case. Every sentence earns its place.

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

Completeness5/5

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

For a query tool with readOnlyHint and openWorldHint, a full output schema, and 100% schema coverage, the description covers purpose, method, and a critical edge case. No gaps remain.

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 description need not add param details. It mentions 'nearest' and 'shared distinctive tags', which aligns with parameters but adds no new semantics beyond the schema.

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 verb 'Find', the resource 'nearest POIs', and the method 'tag-cosine similarity'. The phrase 'more like this' confirms intent. It distinguishes from siblings like 'search_pois' and 'get_poi_details'.

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

Usage Guidelines4/5

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

The description explicitly states when to use (find similar POIs) and a key edge case (empty for generic tags). It does not list when not to use, but the sibling context provides implicit differentiation.

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

get_cityGet city detailsA
Read-only
Inspect

Get one city by slug, including POI count, top distinctive tags, top categories, and a sample of its top POIs.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage for human-readable name/description fields. EN is canonical.en
slugYesCity slug, e.g. 'berlin'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
latYes
lngYes
nameYes
slugYes
name_enNo
top_tagsNo
poi_countYes
sample_poisNo
country_iso2Yes
wikidata_qidNo
top_categoriesNo
Behavior4/5

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

Annotations provide readOnlyHint and openWorldHint. Description adds value by specifying returned data (POI count, tags, categories, sample POIs), aligning with open world hint. No contradiction.

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?

Single sentence (21 words), front-loaded with verb and resource, no redundant information.

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?

With good annotations and output schema, description adequately covers main purpose and return data. Lacks details on error cases or prerequisites (e.g., slug existence), but fairly complete for a lookup tool.

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 coverage is 100%; both parameters documented. Description does not add extra semantics beyond schema (e.g., no mention of lang parameter constraints or defaults). Baseline score of 3 applies.

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?

Clear verb 'Get' with specific resource 'city by slug'. Distinguishes from siblings like list_cities (multiple cities) and get_country (different entity). Includes specific data returned (POI count, tags, categories, sample POIs).

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?

No explicit guidance on when to use vs alternatives. Use case is implied (need single city details), but no mention of when to use list_cities instead or when not to use this tool. Siblings exist but description lacks usage notes.

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

get_countryGet country detailsA
Read-only
Inspect

Get one country by ISO 3166-1 alpha-2 code, including its active cities (top 100 by POI count).

ParametersJSON Schema
NameRequiredDescriptionDefault
iso2YesISO 3166-1 alpha-2 code, e.g. 'DE'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
iso2Yes
citiesNo
name_deYes
name_enYes
poi_countYes
city_countYes
name_localNo
wikidata_qidNo
Behavior4/5

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

Annotations declare readOnly and openWorld hints. The description adds that it returns the top 100 active cities by POI count, providing useful behavioral context beyond the annotations.

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, concise sentence that conveys the essential purpose and output. No unnecessary words; front-loaded with the action.

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

Completeness5/5

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

For a simple retrieval tool with an output schema, the description covers the key input (ISO code) and output (country with top cities), providing sufficient context for an AI agent.

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 coverage for the single parameter is 100% and already describes the ISO code format. The description repeats this but adds no additional parameter detail, so baseline score of 3 is appropriate.

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 retrieves one country by ISO code and includes its top active cities. It distinguishes from siblings like list_countries (list all) and get_city (single city).

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 implicitly indicates when to use (when you need a specific country with its top cities) but lacks explicit when-not-to-use or alternative tool mentions.

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

get_poi_detailsGet POI detailsA
Read-only
Inspect

Get one POI by UUID or slug, with full enrichment: coordinates, approved tags, categories, Wikidata/OSM/Google identifiers, and hero image.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPOI UUID or slug.
langNoLanguage for human-readable name/description fields. EN is canonical.en

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
latYes
lngYes
urlYes
nameYes
slugYes
tagsYes
osm_idNo
city_slugNo
image_urlNo
categoriesNo
descriptionNo
country_iso2No
image_sourceNo
wikidata_qidNo
google_place_idNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true. Description adds value by specifying that the lang parameter affects human-readable fields and that EN is canonical, providing useful behavioral context beyond the annotations.

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?

Single sentence, front-loaded with key action and resource, lists specific enrichment fields without redundancy. Every word earns its place.

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

Completeness5/5

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

Given the presence of annotations and output schema, the description sufficiently covers the tool's behavior. It explains what is returned and the role of the lang parameter, leaving no critical gaps for a simple retrieval tool.

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?

Both parameters have schema descriptions, so baseline is 3. Description adds meaning by clarifying 'id' accepts UUID or slug and 'lang' affects 'human-readable name/description fields' with 'EN is canonical', which compensates for lack of deeper schema detail.

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?

Description clearly states verb ('Get'), resource ('POI'), identifier used ('UUID or slug'), and lists the enriched fields returned. It distinguishes from sibling tools like search_pois and get_city/get_country due to the single-item retrieval and specific enrichment details.

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?

Description implies use when needing full details for one POI but does not explicitly state when to use this over siblings like find_similar_pois or search_pois. No exclusions or prerequisites mentioned.

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

list_citiesList citiesA
Read-only
Inspect

List active cities ordered by POI count, with coordinates and Wikidata QID. Paginate with limit/offset; filter by ISO 3166-1 alpha-2 country code.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of cities to return (1-100).
offsetNoNumber of cities to skip, for pagination.
countryNoISO 3166-1 alpha-2 country code filter, e.g. 'DE'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
limitYes
totalYes
citiesYes
offsetYes
Behavior4/5

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

Annotations already indicate readOnlyHint=true (safe read) and openWorldHint=true (results may change). The description adds behavioral details such as ordering by POI count and inclusion of coordinates and QID, which go beyond the annotations.

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?

Two sentences: first explains the action and output, second covers parameters. No wasted words, front-loaded with key information. Every sentence earns its place.

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 output schema exists (mentioned but not shown), the description covers essential aspects: what is returned (coordinates, QID), how to paginate and filter. It is complete for a simple read-only list tool, though it could mention edge cases like no results.

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?

Schema coverage is 100%, so baseline is 3. The description adds context for parameters (pagination, filtering) and specifies that results are ordered by POI count, which is not in the schema. This adds meaningful value.

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 verb 'list', the resource 'active cities', the ordering by POI count, and the included data (coordinates and Wikidata QID). This distinguishes it from sibling tools like get_city (single city) or list_countries.

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

Usage Guidelines4/5

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

The description explains pagination with limit/offset and filtering by ISO 3166-1 alpha-2 country code. While it doesn't explicitly state when not to use this tool, the context is clear and the sibling tools cover different use cases.

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

list_countriesList countriesA
Read-only
Inspect

List every country that has at least one active city, with city and POI counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
countriesYes
Behavior5/5

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

Annotations declare readOnlyHint=true and openWorldHint=true. The description adds meaningful behavioral context: the filtering condition and return of city/POI counts, which goes beyond what annotations provide. No contradictions.

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, front-loaded with the essential information. Every word adds value—no redundancies or fluff.

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

Completeness5/5

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

Given no parameters, an output schema exists, and annotations cover safety, the description is fully complete for an agent to decide. It explains what is listed and the conditions.

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?

No parameters exist, so schema coverage is 100% by default. The description does not need to add parameter details. Per guidelines, 0 parameters gives a baseline of 4, which is appropriate.

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 verb 'list' and the resource 'countries' with a specific condition (at least one active city) and additional data (city and POI counts). This distinguishes it from sibling tools like get_country (single country) and list_cities (cities).

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

Usage Guidelines4/5

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

The description provides clear context: it lists countries with active cities and includes counts. It implies usage for aggregated overview, though it lacks explicit when-not or alternative tool mentions. The sibling list makes differentiation possible.

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

search_poisSearch points of interestA
Read-only
Inspect

Free-text POI search with prefix/tag/fuzzy ranking plus popularity and geo boosts. Provide q (free text, min 2 chars) and/or city (slug); with both, the search is scoped to that city. Optionally narrow with tags (a POI must carry all of them). At least one of q or city is required.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text query (min 2 chars).
cityNoRestrict to a city slug.
langNoLanguage for human-readable name/description fields. EN is canonical.en
tagsNoTag slugs; a POI must carry all of them.
limitNoMaximum number of POIs to return (1-50).

Output Schema

ParametersJSON Schema
NameRequiredDescription
poisYes
countYes
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds behavioral details about ranking algorithm, parameter requirements (min 2 chars for q, at least one of q or city), and scoping behavior, complementing the annotations without contradiction.

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?

Two sentences, no wasted words. First sentence states purpose and capabilities, second explains parameter requirements. Front-loaded with the main action.

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 output schema exists, description doesn't need to explain return values. It covers essential behavior: free-text search with boosts, scoping, tag filtering, and parameter requirements. Minor omission of pagination details but acceptable for a search tool.

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?

Schema coverage is 100%, so baseline is 3. The description adds context about how parameters interact (e.g., scoping to city when both q and city provided) and the ranking behavior, which goes beyond the raw schema descriptions.

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 'Free-text POI search' with specific verb and resource, and lists capabilities like prefix/tag/fuzzy ranking and geo boosts, distinguishing it from sibling tools such as find_similar_pois or get_poi_details.

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

Usage Guidelines4/5

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

The description provides clear context on when to use this tool (free-text search with optional city and tags) but does not explicitly mention when not to use it or compare to alternatives.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources