sportlink-mcp
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
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.
Naming Consistency5/5All 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.
Tool Count5/5Seven 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.
Completeness5/5For 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.
Average 3.8/5 across 7 of 7 tools scored. Lowest: 3.2/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 1 commit in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden of behavioral disclosure, but it only says 'calcula', giving no information about side effects, required context, return format, or how the match is computed. The tool appears non-destructive, but that is inferred rather than documented.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that immediately communicates the core purpose. It avoids fluff and is well-structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple in concept but has 7 parameters, no annotations, and no output schema; the description does not explain the expected result format or how to interpret the percentage. This leaves significant gaps for an agent that needs to invoke it correctly and use its output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3 even though the descriptions are terse labels like 'Edad del atleta'. The tool description itself adds no parameter-level insight beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: calculating a compatibility percentage between an athlete and an opportunity. It is specific and distinct from the sibling tools, which are search and profile viewing operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives, nor does it mention prerequisites such as having an athlete profile or opportunity details. It only implies a general use case through the phrase 'entre un atleta y una oportunidad'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden; it does disclose a query-like action and that all filters are optional. However, it omits behavioral details such as whether filters combine, pagination behavior, or what the result set looks like when no filters are provided.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, no fluff; the core action is front-loaded and every word contributes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and all parameters are documented, so no required arguments are missing. Still, without an output schema or annotations, the description leaves the response shape and filter combination behavior implicit, which is a notable gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description merely repeats the three filter names and marks them as optional, adding no deeper semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Busca') and resource ('entrenadores registrados en SportLink'), clearly identifying what the tool returns and how it differs from sibling tools like buscar_entrenamientos or buscar_clubes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It implies usage for finding registered coaches and lists three optional filters, but it never explicitly states when to prefer this tool over sibling search tools or provides exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 behavioral disclosure burden. It only states that the tool is a read ('Consulta'), but it does not disclose what 'consolidated' includes, permission requirements, handling of nonexistent users, or any error or response behavior. The single phrase is too thin to be transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It states the verb and resource directly and earns its place without redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and the schema fully documents its parameters, but there is no output schema and the description leaves 'consolidado' undefined. An agent is not told what the returned profile looks like, how empty or invalid IDs are handled, or how this differs from searching for users. This is adequate but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%: both required parameters ('idusuario' and 'tipo') already have meaningful descriptions and 'tipo' has an enum. The description adds no extra parameter-level meaning, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'Consulta' with a specific object ('el perfil consolidado de un usuario'), clearly identifying the resource and action. It is distinguishable from the sibling 'buscar_*' tools, which are search tools for different entity types, and from 'calcular_match'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: use this tool when you need a user's consolidated profile in SportLink. It does not explicitly mention when not to use it or name alternatives, but the unique 'perfil consolidado' scope makes the intended usage evident relative to the search-oriented siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It implies a read-only search operation and mentions optional filtering, but it does not disclose details like result format, pagination, or authentication requirements. It is adequate but not deeply transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the core purpose first and the optional filters second. There is no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with three optional string parameters and no nested objects, the description is mostly complete. It covers what the tool does and the filtering options, though it omits any mention of the return shape or result limits, which is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter already documented. The description only echoes the parameter names (deporte, ubicacion, nivel) without adding new semantic detail, so it stays at the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Busca entrenamientos deportivos') and the platform ('SportLink'), with optional filters for deporte, ubicacion, and nivel. It also distinguishes itself from siblings like buscar_entrenadores by targeting 'entrenamientos' rather than people.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear context: use this to search sports trainings, with optional filters. However, it does not explicitly state when not to use it or mention alternative tools such as buscar_entrenadores or buscar_clubes, so some inference is required.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the burden of behavioral disclosure. 'Busca' and 'Filtra' make the core search/filter behavior clear, but the description does not disclose details such as result format, limits, or behavior when no filters are supplied.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. It front-loads the primary purpose and then lists the optional filter dimensions, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple optional-filter search tool with no nested objects and no output schema, the description is mostly sufficient: it names the domain, the action, and the filters. The only minor gap is that it does not explicitly mention returning a list of matching events or any pagination/result behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes all three parameters with 100% coverage, so the baseline is 3. The description adds only that the filters are optional, which is already conveyed by the absence of required fields, and provides no extra format or syntax detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (Busca) and resource (pruebas deportivas en SportLink), and the optional filters clarify scope. This cleanly separates it from sibling tools like buscar_entrenamientos, buscar_empleos, and buscar_clubes, which target different resource types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear context (search sport events) and indicates that filters are optional, but it does not explicitly say when to prefer this tool over alternatives or mention any exclusions. Correct usage is mostly implied by the resource name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the burden of behavioral disclosure. It correctly implies a read-only search operation and mentions optional filters, but it does not explain the return format, behavior when no filters are provided, pagination, or potential limits. For a low-risk search tool this is acceptable but not fully transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences that front-load the action and resource. Every word contributes meaning: the domain, the optional filter behavior, and the filter fields. There is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with zero required parameters, no nested objects, and no output schema, the description covers the essential aspects: purpose and filter options. It does not mention return values or explicitly route away from sibling tools, but these are minor omissions given how straightforward the tool is.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description repeats the filter names (nombre, ubicacion, deporte) and adds the notion of optionality, but it does not add deeper semantics such as partial matching, case sensitivity, or how multiple filters combine. It does not need to compensate much because the schema already documents each parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Busca') on a clear resource ('clubes deportivos registrados en SportLink') and lists the filter dimensions. The resource type 'clubes' clearly distinguishes this from sibling tools like buscar_pruebas, buscar_entrenamientos, and buscar_entrenadores.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool: when searching for sports clubs in SportLink, with optional filters. It does not explicitly name alternatives or exclusion criteria, but the sibling tool names make the resource boundary obvious, so this is a minor gap rather than a serious one.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No hay anotaciones, por lo que la descripción carga con la transparencia conductual. Indica que es una operación de búsqueda y señala los filtros opcionales, pero no describe el formato de salida, paginación ni si devuelve todos los empleos cuando no se aplican filteros. Es adecuada para un caso sencillo, pero deja lagunas.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Dos oraciones cortas y direcas: la prímera define la acción y el recurso, la seguinda explica los filtros opcionales. No hay redundancia ni informacón irrelevante y la informacón clave está al principio.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Para una herramienta de búsqueda sencilla con solo dos parámetros opcionales y sin esquema de salida, la descripción cubre lo escencial: qué búsca, dónde y cómofiltrar. Podríra mencionar explícitamente el formatode respuestao distinguirse de los siblings, pero no es crítico para invocar la herramienta correctamente.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
El schema ya documenta ambos parámetros con cobertura del 100%, así que la línea base es 3. La descripción añade valor al indicar que los parámetros son filtros opcionales y al vincularlos con deporte y título/nombre, lo que aclara su propósto de uso.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
La descripción comienza con un verbo específico, 'Busca', y un recurso claro: ofertas de empleo deportivo en SportLink. El ámbito queda bien delimitado y se distingue de los hermanos buscar_pruebas, buscar_entrenamientos y buscar_clubes porque trata específicamente de empleos.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
El contexto de uso es claro: sirve para buscar ofertas de trabajo deportivo y permite filtrar por deporte o título/nombre. No menciona explícitamente cuándo no usarlo ni nombra alternativas, pero el contexto bastantemente claro entre los sibling tools de búsqueda.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AlanGr12/sportlink-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server