Skip to main content
Glama

Lumify Sports Intelligence

list_events

Read-onlyIdempotent

List events (schedules and live scores), paginated by id (after_id). Filter by sport, league, status, date range, season, or team_id (resolve teams via list_teams / get_team). Returns event id, name, sport/league, start time, status, and venue for each; pass include_scores to also inline participants + scores (intended for small result sets — use get_event for one event's full detail, or query_events for free-text/natural-language filters instead of structured params).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoUTC end date YYYY-MM-DD (inclusive).
dateNoUTC date YYYY-MM-DD (single day).
fromNoUTC start date YYYY-MM-DD.
sortNoSort order. sort=status is incompatible with after_id.time
limitNoMax events to return per page.
sportNoSport slug, e.g. mlb, nfl, tennis, soccer.
leagueNoLeague slug, e.g. nfl, atp, mls.
statusNoFilter to events in this status.
team_idNoFilter to events where this team participates. Resolve ids via list_teams.
after_idNoCursor: return events with id > after_id (from the previous page's next_after_id).
season_idNoFilter by season ID (from list_seasons).
has_recommendNoWhen true, only events with at least one recommended bet.
include_scoresNoInline participants + scores in each event (intended for small result sets).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalNo
eventsNo
next_after_idNoPass as after_id to fetch the next page; null on the last page.

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare this a read-only, idempotent, non-destructive operation. The description supplements this with pagination details (after_id), the behavior of include_scores ('intended for small result sets'), and the exact fields returned. This goes beyond the annotations in a meaningful way.

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 sentences carry a wealth of information without filler. It starts with the core action, then systematically covers filters, return fields, and alternatives, all while remaining scannable and direct.

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

Completeness5/5

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

For a tool with 13 optional parameters and a well-documented schema, the description covers all essential behavioral aspects: purpose, filtering, pagination, return shape, performance notes, and pointer to sibling tools. Nothing critical is missing for an agent to invoke it correctly.

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% with detailed parameter descriptions, so the baseline is 3. The description adds value by explaining the pagination flow (after_id from next_after_id) and the performance caveat for include_scores, which isn't evident from the schema alone.

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 'List events (schedules and live scores)', a clear verb+resource statement, and immediately differentiates itself from siblings by mentioning pagination via after_id and structured filters. It also names get_event and query_events as alternatives, making its own scope evident.

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

Usage Guidelines5/5

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

Explicit guidance is provided: 'use get_event for one event's full detail, or query_events for free-text/natural-language filters instead of structured params'. It also tells agents to resolve team IDs via list_teams/get_team, covering when not to use this tool.

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

A4.4/5.0
Disambiguation5/5

Each tool maps to a distinct data resource or operation: events, live scores, odds, odds history, splits, stats, intelligence, player props, players, teams, sports, and seasons. Pairs like list_events vs query_events and get_event vs get_live_score are clearly differentiated by structured vs natural-language filtering and lightweight vs full detail.

Naming Consistency5/5

Tool names consistently follow a verb_noun snake_case pattern: get_*, list_*, search_*, query_*, batch_get_*, and estimate_cost. The naming conventions make the resource family immediately obvious, and deviations like batch_get_events are still predictable variants.

Tool Count4/5

19 tools is on the higher side, but each tool covers a specific sports-intelligence data product or workflow with little redundancy. The count feels intentional for the breadth of the domain rather than bloated.

Completeness4/5

The surface covers event discovery and retrieval, live scores, odds and line movement, splits, statistics, player props, intelligence, player/team/sport/season lookups, batch fetching, and cost estimation. Minor gaps like team standings or full rosters are not exposed, but core agent workflows are well supported.