Skip to main content
Glama
5dollarfootball-api

football-api-mcp

get_standings

Read-onlyIdempotent

Retrieve league standings for a specified league and season. Choose total, corner, or card tables to view points or statistical rankings.

Instructions

League table for a league and season. type "corner" and "card" return corner/card standings instead of points.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoLanguage code for team/league names, e.g. en, es, de, ja, zh-cn
typeNoTable type (default total)
seasonNoSeason, e.g. "2026" or "26/27" (default: current)
league_idYesLeague id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds the behavioral nuance that type='corner' or 'card' changes the result from points-based standings to corner/card standings, going beyond the schema's bare enum labels.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler; the core purpose is front-loaded and the type behavior is the only additional detail. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only lookup tool, the description covers purpose and the main optional variation, while the schema fully documents all four parameters and annotations cover safety. It does not describe output format, but with no output schema this is a minor gap rather than a blocker.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the semantic effect of the 'type' parameter—corner and card return alternative standings—rather than just listing table types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description names the specific resource ('League table') and the verb ('return'), and scopes it to a league and season. It also distinguishes corner/card table variants, so an agent can tell this apart from fixture/odds/bookmaker siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly frames when the tool applies: for standings of a given league and season, with optional type variants for corner/card tables. It does not explicitly name alternatives or say when not to use it, but the context is unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.