outstations-mcp
club-moorage-mcp
Servidor MCP que sirve registros de amarras de clubes náuticos: límites de eslora, reglas de amarre en balsa, procesos de reserva, instalaciones, términos recíprocos y clasificación de confort nocturno. Cada registro lleva una relationship:
outstation— una instalación que el club posee para sus propios miembros. Se incluye con las tres estaciones externas del Royal Victoria Yacht Club (RVYC) (Long Harbour, Friday Harbor, Telegraph Harbour).reciprocal— un club asociado que recibe a miembros visitantes del RVYC como invitados, con sus propios términos para visitantes (noches gratis, tarifas, estancia máxima, seguro mínimo). Se incluye con toda la lista recíproca del RVYC — 138 clubes, en todo el mundo, en dos niveles:Investigados (
confidencemed/alta, 45 clubes) — el conjunto costero de BC + Washington que el barco realmente navega: el sur de la Isla de Vancouver, las Islas del Golfo, las paradas del cruce del lado de Vancouver, los San Juans / Anacortes / Bellingham, el Estrecho de Juan de Fuca / el norte de Puget Sound. Términos por club, tarifas, límites de eslora y ajuste de Vaan.Solo listados (
confidence: baja, 93 clubes) — todo lo demás en la lista: California, Hawái, México, Bermudas, el Caribe, el este de Canadá, el Reino Unido, Australia/NZ y el resto. Solo posición, dirección, teléfono y sitio web, para que un plan de travesía pueda preguntar "¿de quién es el club en este puerto?" — los términos de amarre para invitados no están investigados y cada registro lo indica.
Herramientas
list_moorage(clubs?, relationship?)— todos los amarres: ubicación, coordenadas, límites de eslora.find_moorage_near(lat, lon, radius_nm=20, clubs?, relationship?, date?)— amarres cercanos, los más próximos primero; anota disponibilidad en vivo cuando está configurado.get_moorage(name)— registro completo + prosa; para una estación externa, también las reglas generales del club.rank_moorage(names, forecast, date?)— clasificación de confort nocturno para registros que admiten fondeo/amarra; los registros solo de muelle se devuelven bajonot_ranked. Reutiliza la puntuación de pilotbook-mcp contra un pronóstico de weather-mcp.check_availability(name, date)— disponibilidad de amarre en vivo para estaciones externas reservables del RVYC; requiereRVYC_USERNAME/RVYC_PASSWORD.
El filtro clubs es una lista opcional de códigos de club (p. ej. ["RVYC"]); omítelo para todos los clubes. El filtro relationship es "outstation" o "reciprocal"; omítelo para ambos. La capa de agente/contexto decide qué clubes son relevantes según quién esté a bordo. Los recíprocos discontinuados (available: false) se omiten de list/find pero aún se resuelven por nombre.
Related MCP server: flkeys-mcp
Disponibilidad en vivo de estaciones externas (opcional)
check_availability(name, date) informa la disponibilidad de amarre en vivo para las dos estaciones externas reservables del RVYC (Long Harbour, Friday Harbor); find_moorage_near y rank_moorage aceptan un date opcional para anotar los resultados de la misma manera. Telegraph Harbour es por orden de llegada (se reserva a través de la marina) y los clubes recíprocos no tienen programador en línea, por lo que devuelven una razón en lugar de conteos.
Esta capa está desactivada por defecto. Configura RVYC_USERNAME y RVYC_PASSWORD (credenciales de miembro) para activarla; sin ellas, las herramientas devuelven datos estáticos más una nota de "no configurado". No se almacenan credenciales ni datos de miembros en este paquete.
Datos
Los registros son markdown (frontmatter YAML + prosa) bajo src/club_moorage_mcp/data/ (clubs/, outstations/, reciprocals/). Apunta a un directorio diferente con CLUB_MOORAGE_DATA_PATH. pilotbook_anchorage enlaza un registro con el fondeadero más cercano del libro de pilotaje; el agente llama a get_anchorage de pilotbook-mcp para el lecho marino/profundidad.
moorage.geojson es un mapa generado de cada registro incluido — GitHub lo renderiza en línea (azul = estación externa, verde = recíproco). Regenera después de un cambio de datos con uv run python ingest/build_geojson.py; --check falla en caso de desviación, y tests/test_geojson.py hace lo mismo en CI.
Los registros recíprocos se generan desde ingest/reciprocals.yaml — edita el YAML, luego uv run python ingest/build_records.py. Las tres estaciones externas del RVYC están escritas a mano. La lista de clubes es el Anuario 2024 del RVYC; las posiciones y contactos son del propio mapa recíproco del RVYC. Los términos por club se investigaron de fuentes secundarias donde existen; verifica tarifas, eslora y disponibilidad con el club antes de llegar.
Instalación
uv sync --devEjecutar el servidor
uv run club-moorage-mcpAvailable Tools
4 toolsfind_anchorages_nearC
Anchorages within a radius of a position, nearest first, with exposure summary.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lon | Yes | ||
| radius_nm | No | Search radius in nautical miles (default 10). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, description must disclose behavioral traits. It mentions exposure summary but omits coordinate format, rate limits, or any output details. Minimal behavioral disclosure.
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 is concise but too brief. It front-loads the action but lacks necessary details, making it under-specified rather than optimally concise.
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 no output schema, no annotations, and low parameter coverage, the description is incomplete. It fails to specify coordinate system, exposure summary details, or any constraints beyond radius.
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 only 33% (radius_nm has description). Description adds no extra meaning for lat/lon parameters, leaving their format and units unspecified.
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 finds anchorages within a radius of a position, orders them nearest first, and provides an exposure summary. It distinguishes from siblings: get_anchorage (specific), list_sources (sources), rank_anchorages (ranking).
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?
No guidance on when to use this tool versus siblings. Does not mention when a call is appropriate or when to use alternatives like get_anchorage or rank_anchorages.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_anchorageB
Full record and verbatim pilot-book prose for one named anchorage.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only mentions returning data without disclosing side effects, authentication needs, rate limits, or whether the tool is read-only. The description lacks behavioral details beyond the output content.
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. It effectively communicates the core functionality without extraneous words, though it could be structured to include parameter constraints.
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 simplicity (1 required param, no output schema), the description covers the basic purpose. However, it does not describe the return structure or what constitutes 'full record,' which would be helpful for an agent. An output schema would mitigate this, but none is provided.
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 single parameter 'name' has no schema description (0% coverage), and the description only implies it is the anchorage name. No format, case sensitivity, or validation details are provided, leaving the agent to guess constraints.
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 'full record and verbatim pilot-book prose for one named anchorage,' specifying the verb (get) and resource (anchorage by name). It effectively distinguishes from siblings like find_anchorages_near (search) and rank_anchorages (ranking).
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?
No explicit when-to-use or when-not-to-use guidance is provided. The purpose is clear but does not mention alternatives or context like using find_anchorages_near for searching. The agent must infer usage from sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_sourcesC
The pilot books ingested into the vault.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only states what is returned. It discloses nothing about behavior such as read-only nature, authentication needs, pagination, or side effects.
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 sentence but is not a proper sentence with a main verb; it is a noun phrase. It is too brief and lacks structure, failing to clearly convey the operation.
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 simplicity of the tool (no parameters, no output schema), the description should at least include the verb 'list.' It partially tells what the tool returns but is incomplete as a functional description.
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 tool has no parameters, so schema coverage is 100%. The baseline for zero parameters is 4, and the description adds no parameter information, which is acceptable.
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 is a noun phrase, 'The pilot books ingested into the vault,' which omits the action verb. The tool name implies 'list,' but the description does not explicitly state that the tool lists or retrieves these books. It is somewhat clear but lacks a verb.
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 provides no guidance on when to use this tool versus alternatives. Sibling tools are about anchorages, but no comparison or context is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rank_anchoragesA
Rank named anchorages by overnight comfort against a forecast. Fetch the forecast from weather-mcp and pass it as forecast (a list of steps with wind_from_deg, wind_kn, swell_from_deg, swell_m).
| Name | Required | Description | Default |
|---|---|---|---|
| names | Yes | ||
| forecast | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only states it ranks by comfort against forecast. Lacks details on side effects, authentication, or assumptions (e.g., units, missing data). Insufficient disclosure for a tool with zero 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the primary purpose. Second sentence provides necessary parameter detail. Minimal waste, though could be slightly more concise.
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?
Provides essential information for a ranking tool with no output schema and no annotations. Explains forecast format but does not mention output structure (ranking order, score format) or error conditions. Adequate but has gaps.
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 0%; description adds meaning by explaining that 'names' are anchorage names and 'forecast' is a list of steps with specified fields (wind_from_deg, wind_kn, swell_from_deg, swell_m). Adds significant value beyond raw schema.
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?
Description states verb 'rank' and resource 'anchorages' with a clear method (against a forecast). Distinguishes from siblings: find_anchorages_near (nearby, not rank), get_anchorage (single), list_sources (list).
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?
Tells user to fetch forecast from weather-mcp and pass specific fields, implying a prerequisite. Does not explicitly state when to use versus alternatives or mention exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.6.0- First observed
find_anchorages_near - First observed
get_anchorage - First observed
list_sources - First observed
rank_anchorages
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: finding anchorages near a position, retrieving details for a specific anchorage, listing data sources, and ranking anchorages by comfort. No overlap exists.
All tool names follow a consistent verb_noun pattern in snake_case: find_anchorages_near, get_anchorage, list_sources, rank_anchorages. No deviations or mixed conventions.
Four tools is slightly below average but appropriate for a focused server covering anchorage lookup and ranking. Each tool earns its place without redundancy.
The set covers the core read operations for anchorages: find, get details, rank, and list sources. No obvious dead ends, though write operations are absent (likely by design).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Curated gateway to snapshot-versioned Canadian public data services with source provenance.
Read-only access to live ADSBiq aircraft and network state, with community contribution metadata.
Read-only property facts, indicative availability, authorised booking links and guest-safe support.
Restaurant fire-safety & service-interval tracking (NFPA 96/17A) — read-only demo tools.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA fully MCP-compliant, open-source maritime data service that provides real-time vessel tracking, port information, route planning, and weather/tide data for maritime applications.14MIT
- FlicenseNot gradedqualityDmaintenanceVerified hyper-local data API for the Florida Keys. Raccoon data covering charters, marinas, restaurants, and local knowledge missing from Google Maps and TripAdvisor.-
- AlicenseAqualityBmaintenanceEnables searching SAC huts, checking availability, and preparing booking or cancellation handoffs on hut-reservation.org with a safety model for writes.1093MIT
- AlicenseAqualityCmaintenanceEnables AI agents to query and manage campground reservations, sites, and rate plans via the Campspot Online Booking API.8MIT