GoalGorithm MCP Server
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool has a clearly distinct purpose: get_league_table retrieves team statistics, list_leagues provides league metadata, and predict_match forecasts match outcomes. There is no overlap in functionality, making tool selection straightforward for an agent.
Naming Consistency5/5All tools follow a consistent verb_noun naming pattern (get_league_table, list_leagues, predict_match). The verbs are descriptive and appropriate for their actions, and the snake_case style is uniformly applied across all tools.
Tool Count3/5With only 3 tools, the server feels thin for a soccer analytics domain. While the tools cover key areas (leagues, tables, predictions), additional operations like historical match data or player statistics could enhance completeness, making the count borderline for the apparent scope.
Completeness4/5The tools provide a solid foundation for soccer analytics with league listing, table retrieval, and match prediction. However, there are minor gaps, such as missing update or delete operations for leagues or teams, and no tools for deeper statistical analysis or historical data, which agents might need to work around.
Average 3.9/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits 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
This repository is licensed under GPL 2.0.
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
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses that results are sorted by 'attacking strength (xG per 90 minutes)', which is useful behavioral context beyond basic retrieval. However, it lacks details on rate limits, authentication needs, pagination, error conditions, or whether this is a read-only operation (implied by 'Get' but not explicit). The description doesn't contradict annotations (none exist).
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 perfectly structured and concise: purpose statement first, behavioral detail second, parameter documentation third. Every sentence earns its place - no redundant information. The three-sentence format is front-loaded with the core functionality.
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?
Given 1 parameter with 0% schema coverage, no annotations, but an output schema exists, the description does well. It explains the parameter semantics and sorting behavior. The output schema existence means return values don't need description. However, for a data retrieval tool, additional context about data freshness, source, or limitations would enhance completeness.
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?
Schema description coverage is 0%, so the description must compensate. It provides meaningful semantics for the single parameter: 'league: League slug, name, or ID (default: EPL)' - explaining what the parameter represents and acceptable formats. This adds substantial value beyond the bare schema. However, it doesn't provide examples of valid slugs/names/IDs beyond the default 'EPL'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get all teams in a league with their xG statistics' - a specific verb ('Get') and resource ('teams in a league with xG statistics'). It distinguishes from sibling tools (list_leagues, predict_match) by focusing on team statistics rather than league listing or match prediction. However, it doesn't explicitly contrast with siblings beyond this implicit differentiation.
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 implies usage context through 'Returns teams sorted by attacking strength' and the league parameter, suggesting this is for analyzing team performance metrics. However, it provides no explicit guidance on when to use this tool versus alternatives like predict_match for match outcomes or list_leagues for league metadata. No when-not-to-use scenarios or prerequisites are mentioned.
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 provided, the description carries the full burden. It describes the output format ('IDs and slugs') but does not disclose behavioral traits such as rate limits, authentication needs, or whether the list is static or dynamic. The description is accurate but lacks operational context.
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 directly states the tool's function and output. Every word earns its place with no redundancy or waste, making it highly efficient and easy to understand.
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?
Given the tool's simplicity (0 parameters, no annotations, but with an output schema), the description is complete enough for a list operation. It specifies the resource and output format, and the output schema will handle return values, so no additional detail is needed for basic functionality.
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?
The tool has 0 parameters, and schema description coverage is 100%. The description does not need to add parameter semantics, so a baseline of 4 is appropriate as it efficiently states the tool's purpose without unnecessary parameter details.
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 verb ('List') and resource ('all supported soccer leagues'), specifying what information is returned ('with IDs and slugs'). It distinguishes from sibling tools like 'get_league_table' (which focuses on standings) and 'predict_match' (which focuses on match predictions).
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 implies usage for retrieving league metadata, but does not explicitly state when to use this tool versus alternatives like 'get_league_table' for standings or 'predict_match' for predictions. No exclusions or prerequisites are mentioned, leaving usage context somewhat open-ended.
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 provided, the description carries the full burden of behavioral disclosure. It describes the prediction model and outputs, but lacks details on limitations (e.g., accuracy, data recency), error handling, or performance traits like rate limits. It adequately covers the core behavior but misses deeper operational context.
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 well-structured and front-loaded, starting with the core purpose and outputs, followed by a clear parameter breakdown. Every sentence adds value without redundancy, making it efficient and easy to parse for an AI agent.
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?
Given the complexity of a prediction tool with no annotations but an output schema, the description is mostly complete. It explains the model, outputs, and parameters, but could improve by addressing limitations or dependencies. The output schema likely covers return values, reducing the need for detailed output explanation here.
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?
Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics by explaining each parameter's purpose with examples (e.g., 'Home team name (e.g. "Arsenal")') and specifying the default for 'league'. This goes beyond the bare schema, though it could provide more on format constraints or valid values.
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 specific action ('predict soccer match outcome'), the method ('using xG-based Poisson model'), and the exact outputs (probabilities for win/draw/loss, over/under 2.5 goals, both teams to score, and top 3 most likely scores). It distinguishes itself from sibling tools like 'get_league_table' and 'list_leagues' by focusing on match prediction rather than data retrieval.
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 implies usage for predicting soccer match outcomes, but it does not explicitly state when to use this tool versus alternatives or provide any exclusions. There is no guidance on prerequisites or scenarios where other tools might be more appropriate, leaving usage context somewhat vague.
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/tohoanganhai/goalgorithm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server