Skip to main content
Glama

ParlayAPI

parlayapi_best_line

Find the best (highest) price for each outcome across bookmakers.

Useful for line-shopping bots. Returns one row per game / market /
side with the bookmaker offering the best price.

Args:
    sport_key: e.g. "baseball_mlb"
    market: h2h | spreads | totals
    bookmakers: Restrict the search to these books (optional).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
marketNoh2h
sport_keyYes
bookmakersNo

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

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does disclose the output granularity ('one row per game / market / side with the bookmaker offering the best price') and that bookmakers restricts the search to selected books. It does not disclose tie-breaking when prices are equal, odds format (decimal vs American), or data freshness — all behaviors a line-shopping bot would reasonably care about.

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 crisp introductory sentences followed by a compact three-line args block. The purpose and return shape are front-loaded, and every sentence adds distinct information — no filler and no repetition of schema titles.

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 3-parameter lookup with an output schema present, the description covers purpose, output shape, and all parameters. Remaining gaps — tie-breaking for equal best prices and odds format — are minor and arguably covered by the output schema. It omits auth and rate-limit notes, but that is consistent with the sibling set.

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%, and the description fully compensates: sport_key gets a concrete example ('baseball_mlb'), market gets the valid value list ('h2h | spreads | totals') that the schema lacks as enums, and bookmakers gets both semantics ('Restrict the search to these books') and optionality. Every parameter is meaningfully documented beyond its bare title.

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

Purpose4/5

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

States a specific verb and resource: 'Find the best (highest) price for each outcome across bookmakers.' The return shape ('one row per game / market / side with the bookmaker offering the best price') further pins down behavior and structurally separates it from raw-odds siblings like get_odds and price-difference tools like find_arbitrage. It does not explicitly name a sibling to distinguish from, so differentiation is structural rather than explicit.

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?

'Useful for line-shopping bots' gives a concrete scenario indicating when this tool shines, which is a real usage signal. However, it never states when not to use it or names alternatives such as find_arbitrage, consensus, or get_odds for related-but-different needs. Usage context is implied rather than explicit.

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.