Skip to main content
Glama

football_get_odds

Read-onlyIdempotent

Retrieve live head-to-head odds for upcoming World Cup 2026 matches from multiple bookmakers. Filter by team to focus on specific events.

Instructions

Return live market head-to-head odds for upcoming World Cup 2026 matches.

Sourced from The Odds API (requires THEODDS_KEY). Without a key the call returns a clean ALL_SOURCES_FAILED envelope rather than crashing.

Args: team: Optional team name to filter events (case-insensitive substring, matched against both sides). Omit to return every WC event.

Returns: data.events: list of {event_id, home, away, commence_time, bookmakers: [{name, home, draw, away}]} with decimal 1X2 prices per bookmaker. meta.source: adapter that served the data (theodds / cache:stale).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamNoOptional team name to filter events (case-insensitive substring, matched against both sides). Omit to return every WC event.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
errorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

B3.4/5.0
Behavior1/5

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

The description usefully discloses the THEODDS_KEY requirement, the ALL_SOURCES_FAILED envelope, and cache/stale source metadata. However, it claims 'Omit to return every WC event,' which contradicts the openWorldHint=true annotation that responses may not be exhaustive. This is an annotation contradiction.

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

Conciseness4/5

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

The description is well-structured with Args and Returns sections and front-loads the core purpose. It is appropriately sized, though the team parameter text is repeated from the schema, a mild redundancy.

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

Completeness3/5

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

The description covers authentication, failure behavior, parameter use, and return shape, which is generally strong for a simple read-only tool. However, the conflict with openWorldHint=true means it is misleading about completeness, and the description does not acknowledge that the response may not include every World Cup event.

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

Parameters3/5

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

Schema description coverage is 100%: the schema already explains the team parameter as an optional case-insensitive substring matched against both sides. The description's Args section duplicates this rather than adding new semantic meaning, so the baseline of 3 applies.

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?

The description states a specific action, resource, and scope: returning live market head-to-head 1X2 odds for upcoming World Cup 2026 matches. This clearly distinguishes it from sibling tools like football_get_fixtures or football_match_predictor.

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 context is clear: use this tool for live head-to-head odds on World Cup 2026 matches, with an optional team filter. It documents when to omit the team parameter, but it does not explicitly discuss alternatives or when not to use the tool.

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