Skip to main content
Glama

ParlayAPI

parlayapi_consensus

Get consensus (average) odds across all bookmakers per market.

Returns average, best, and worst price per (event, market, player,
line), a sharp baseline for line-shopping. Soccer and other 3-way
markets return separate home, draw, and away consensus rows.

Args:
    sport_key: e.g. "baseball_mlb", "soccer_epl".
    markets: Comma-separated market_keys (optional), e.g. "moneyline,totals".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
marketsNo
sport_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden and does real work: it discloses the exact output composition (average, best, and worst price per event/market/player/line) and proactively calls out an edge case — soccer and 3-way markets return separate home/draw/away consensus rows. It omits data recency and pagination details, but the operation is clearly non-destructive and the get-style behavior is 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/5

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

The purpose is front-loaded in the first sentence, followed by a tight return-value summary and a compact Args block. Every sentence earns its place; the only mildly expendable phrase, 'a sharp baseline for line-shopping,' doubles as usage context, so nothing is wasted.

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?

The description is sufficient for calling the tool: both parameters are documented, the output shape is stated, the 3-way market special case is covered, and the existing output schema supplies the rest of the return contract. The main gap is missing sibling differentiation — with 20 sibling tools including get_odds, best_line, and find_arbitrage, one sentence on when to choose consensus over those would fully close the loop.

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

Parameters5/5

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

Schema description coverage is 0%, yet the Args section fully compensates: sport_key receives realistic examples ('baseball_mlb', 'soccer_epl') and markets receives both a format rule (comma-separated market_keys) and an example ('moneyline,totals'), plus explicit optionality. Both parameters gain meaning that the bare schema — type, title, default — does not provide.

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 opens with a precise verb+resource construction: 'Get consensus (average) odds across all bookmakers per market.' The notion of a consensus average across all bookmakers inherently distinguishes it from siblings like parlayapi_best_line (single best price) and parlayapi_get_odds (raw odds), and the stated return scope (average, best, worst per event/market/player/line) removes any ambiguity.

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

Usage Guidelines3/5

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

Usage context is implied via 'a sharp baseline for line-shopping' — an agent can infer this tool is for market-wide price comparison. However, there is no explicit when-to-use/when-not-to-use statement and no named alternatives among the 20 siblings (best_line, find_arbitrage, get_odds), so routing to this tool over its neighbors relies on inference.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation3/5

Most tools map to distinct workflows (raw odds, best-line, EV scan, arb, middle, single-bet grade, parlay grade), but several pairs are easy to mix up: find_ev vs best_bets both surface +EV opportunities, live_sports vs list_sports differ only in 'live', and verdict vs parlay_verdict have near-identical names. The detailed descriptions resolve most ambiguity, so it is not chaotic, but the boundaries are not all crisp.

Naming Consistency3/5

All names share the parlayapi_ prefix and snake_case, but the suffix style is inconsistent: some are verb-led (get_odds, find_arbitrage, set_bettable_books) and many are bare noun phrases (consensus, verdict, source_quality, magic_link). The live_* and best_* groups are internally consistent, but pairs like list_sports/live_sports and verdict/parlay_verdict add confusion.

Tool Count3/5

22 tools is on the heavy side for an MCP server, even though the sports-betting domain is broad. Each tool has a plausible purpose, but the public demo/metadata tools (live_command_center, book_coverage, source_quality, live_sports) could probably be consolidated or separated.

Completeness4/5

The surface covers the core domain well: sport discovery, game odds, props, consensus, best-line, EV, arbitrage, middles, single-bet verdicts, parlay verdicts, and account/signup flows. Minor gaps exist (no explicit book/market metadata list, no historical odds, no betting-account history), but agents can usually work around them.