Beachmap — Europe Beach Data
Server Details
Europe's 478 best beaches: sea temperature, sand, best months, swimming, surf. Free, CC BY 4.0.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Flightmussy/beachmap-mcp
- GitHub Stars
- 0
- Server Listing
- Beachmap MCP Server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
Each tool serves a clear, distinct purpose: search, get full profile, best month, and warmest ranking. No functional overlap, agents can easily select the right tool.
Mix of styles: 'beaches_best_in_month' (noun_phrase), 'get_beach' and 'search_beaches' (verb_noun), 'warmest_beaches' (adjective_noun). Inconsistent but still readable.
4 tools are well-scoped for a focused read-only beach data server. Each tool provides essential functionality without redundancy.
Core operations covered: search, detail, best month, warmest. Minor gaps like filtering by ratings or coordinates but overall sufficient for the domain.
Available Tools
4 toolsbeaches_best_in_monthBeaches in season for a monthAInspect
Beaches whose best-time window includes a given month, warmest sea first. Good for "where should I go in October?"
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results, default 15, max 50 | |
| month | Yes | Month name or number 1-12 | |
| country | No | ISO-2 code or country name |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It states the sorting order (warmest sea first) and the inclusion criterion (best-time window includes the month). However, it does not mention pagination, rate limits, or authentication needs. The description is adequate but not exhaustive.
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 long, front-loading key information (what the tool returns, sorting, and an example use case). Every sentence adds value, and there is no redundancy or filler.
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 low complexity (3 simple parameters, no output schema, no annotations), the description provides sufficient context for an agent to understand the tool's purpose and usage. It could benefit from specifying output format or pagination, but it covers the essential aspects.
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 coverage is 100%, with descriptions for all three parameters. The description does not add extra meaning beyond the schema, but the schema itself is clear. Baseline 3 applies as the description does not need to compensate for missing schema info.
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 returns beaches whose best-time window includes a given month, sorted by warmest sea first. It uses specific verbs and resources, and the title reinforces the purpose. It distinguishes from siblings like get_beach (single beach) and warmest_beaches (general warmest).
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 includes 'Good for "where should I go in October?"', which clearly indicates a use case for trip planning by month. It does not explicitly exclude other uses or mention alternatives, but the context of sibling tools provides implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_beachGet full beach profileAInspect
Full profile of one beach by id (from search results) or by name.
| Name | Required | Description | Default |
|---|---|---|---|
| id_or_name | Yes | Beach id (e.g. "ksamil-beaches-al") or beach name (e.g. "Ksamil Beaches") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It indicates a read operation ('get'), but does not elaborate on what 'full profile' includes or any side effects. For a simple retrieval, this is minimally adequate.
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 of 16 words, front-loaded with key action. No fluff or redundant phrases.
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?
For a tool with one parameter and no output schema, the description is fairly complete. It explains identification method and that the result is a full profile. However, it could be more specific about what the profile contains.
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 description adds context beyond the schema by explaining the parameter can be id (from search results) or name, and provides examples. Schema coverage is 100%, but the description adds value by clarifying 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 a 'full profile of one beach' and specifies identification by id (from search results) or by name. This distinguishes it from siblings like search_beaches (listing) and beaches_best_in_month (filtered results).
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 you have a beach id or name, but does not explicitly exclude cases or mention alternatives. Context from sibling tools (search, best, warmest) provides implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_beachesSearch European beachesAInspect
Search and filter 511 top European beaches. All filters optional and combinable. Returns compact records; use get_beach for a full profile.
| Name | Required | Description | Default |
|---|---|---|---|
| sand | No | Sand/shore match, e.g. "white", "golden", "pebble" | |
| limit | No | Max results, default 10, max 50 | |
| month | No | Only beaches in season that month (name or 1-12) | |
| query | No | Free-text match on name, place, setting, description and tags (e.g. "snorkelling", "dunes", "Algarve") | |
| country | No | ISO-2 code or country name (e.g. "PT" or "Portugal") | |
| category | No | Beach character | |
| blue_flag | No | Only Blue Flag awarded beaches | |
| min_sea_temp_c | No | Minimum typical warm-season sea temperature in °C |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses that it returns compact records and suggests get_beach for full details. Does not mention permissions or side effects, but search tools are inherently low-risk.
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?
Two concise sentences with front-loaded purpose. Every sentence adds value with no redundancy.
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?
For a search tool with 8 optional parameters and no output schema, the description covers the scope, filtering capabilities, and redirect to full details via sibling. Could mention pagination or sorting, but not essential.
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 has full descriptions for all 8 parameters. The tool description adds value by stating 'All filters optional and combinable', which implies behavioral nuance beyond individual schema descriptions.
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?
Clearly states 'Search and filter 511 top European beaches', specifying verb (search/filter) and resource (European beaches). Distinguishes from sibling 'get_beach' by noting the return format difference.
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?
Explicitly states all filters are optional and combinable, and directs users to get_beach for full profiles. Does not explicitly exclude use cases or compare to 'beaches_best_in_month' or 'warmest_beaches', but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
warmest_beachesWarmest seas in Europe, rankedAInspect
European beaches ranked by typical warm-season sea temperature, warmest first. Optionally filter by country and/or month in season.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results, default 10, max 50 | |
| month | No | Only beaches in season that month (name or 1-12) | |
| country | No | ISO-2 code or country name |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full behavioral burden. It clearly indicates the tool is read-only (ranking and filtering), with no destructive or side effects disclosed. Adequate for a simple query tool.
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 a single concise sentence that front-loads the main purpose, then adds optional filters. No wasted words.
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?
For a simple ranking tool with three optional parameters and no output schema, the description sufficiently conveys purpose and filtering options. It does not detail output structure, but that is acceptable given the tool's simplicity.
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%, so baseline is 3. The description adds context that month filtering applies within the warm season, exceeding the schema's 'Only beaches in season that month'. This enhances understanding.
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 it ranks European beaches by typical warm-season sea temperature, warmest first. This distinguishes it from sibling tools like beaches_best_in_month (best beaches in a month) and get_beach (single beach).
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 use for finding warmest beaches but does not explicitly state when to use this tool over siblings, nor does it mention when not to use it. Optional filters are noted but no alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.