sportlink-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SPORTLINK_API_URL | Yes | The URL of the SportLink backend API |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| buscar_pruebasA | Busca pruebas deportivas en SportLink. Filtra opcionalmente por deporte, zona o categoria. |
| buscar_entrenamientosA | Busca entrenamientos deportivos en SportLink. Filtra opcionalmente por deporte, ubicacion o nivel. |
| buscar_empleosA | Busca ofertas de empleo deportivo en SportLink. Filtra opcionalmente por deporte o titulo/nombre. |
| buscar_clubesA | Busca clubes deportivos registrados en SportLink. Filtra opcionalmente por nombre, ubicacion o deporte. |
| buscar_entrenadoresA | Busca entrenadores registrados en SportLink. Filtra opcionalmente por deporte, ubicacion o tieneclub. |
| consultar_perfilA | Consulta el perfil consolidado de un usuario en SportLink. |
| calcular_matchB | Calcula el porcentaje de compatibilidad (match) entre un atleta y una oportunidad (prueba/entrenamiento). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct entity type: pruebas, entrenamientos, empleos, clubes, entrenadores, perfil, and match. The repetition of the 'buscar_' prefix is not confusing because the following noun clearly identifies the resource, and consultar_perfil/calcular_match are unique actions.
All tool names follow a consistent verb_noun snake_case pattern (buscar_pruebas, buscar_entrenamientos, consultar_perfil, calcular_match). The only minor variation is that not all use the same verb, but the overall pattern remains uniform.
Seven tools is well within the ideal 3-15 range for this server. Each tool covers a meaningful query type in the sports discovery domain without redundancy.
For a read-only discovery and matchmaking server, the surface is complete: it searches all relevant sport entities (pruebas, entrenamientos, empleos, clubes, entrenadores), provides user profile lookup, and calculates compatibility. There are no obvious dead ends for the apparent purpose.