0to100
Server Details
Schedules, injury reports and fan-hub links for all 32 NFL and 30 NBA teams.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
6 toolsget_injury_reportGet injury reportARead-onlyIdempotentInspect
Current injury report for a team.
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds only the word 'Current' to convey freshness/temporal scope. No further behavioral detail (e.g., whether historical reports are available or how recent the data is) is disclosed, but the annotations carry the main burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no redundancy or filler. It immediately states the resource and scope, earning its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool is simple (one parameter, read-only annotations), the description is minimally adequate: it names the resource and the parameter's role. However, without an output schema or any detail about the report's structure, and no link to sibling list_teams for valid team values, an agent may not know how to correctly invoke it or interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the only parameter 'team' has no description in the schema. The phrase 'for a team' clarifies that the team parameter refers to the team of interest, but it doesn't specify the expected format (name, abbreviation, ID), valid values, or how to obtain team identifiers. This is minimal compensation for the schema gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb-implied action ('Current injury report') and a specific resource ('for a team'), making it unambiguous what the tool returns. It is distinct from sibling tools like get_roster or get_player_stats, as an injury report is a different data category.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage is implied: an agent should call this when it needs current injury information for a team. However, no explicit alternatives, exclusions, or conditions are provided. It doesn't mention that team identifiers might come from list_teams, so the guidance is minimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_live_oddsGet live oddsARead-onlyIdempotentInspect
Live betting markets for a team's next game: moneyline, spread, total with $1-payout math (NFL live now; NBA opens with the season).
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context: scope is limited to the next game, the markets offered, the $1-payout math convention, and league availability. It doesn't mention update frequency or out-of-season behavior, but this is acceptable given annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact, information-dense sentence with no filler. The core purpose is front-loaded, and the parenthetical adds valuable league availability context without diluting the main message.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a single parameter, safety annotations, and no output schema, the description does enough to guide selection and invocation: it names the resource scope, market types, payout convention, and league availability. It could be more explicit about return formatting and empty/error states, but the main payload is already sketched.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must define the 'team' parameter, and it does clarify that team refers to the team whose next game odds are returned. However, it doesn't specify whether team should be a name, abbreviation, or ID, nor does it point to list_teams for valid values, leaving some ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states exactly what the tool returns: live betting markets (moneyline, spread, total) for a team's next game. This resource domain is clearly distinct from all sibling tools, which cover injuries, stats, rosters, schedules, and team lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool: when live odds for a team's upcoming game are needed. It also adds league availability timing ('NFL live now; NBA opens with the season'). It does not explicitly name alternatives, but the sibling tools are in unrelated domains, so the intended use is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_player_statsGet player statsARead-onlyIdempotentInspect
Season stats for one player on a team (points/assists/rebounds for NBA, passing/rushing/etc for NFL).
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes | ||
| player | Yes | Player name, e.g. 'Jalen Brunson' or 'Mahomes' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds that results are season aggregates with per-league stat categories, which is useful but overlaps with purpose; it does not disclose side effects, auth requirements, or edge-case behavior. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the core scope, followed by compact parenthetical examples. Every word contributes; no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, read-only, two-parameter lookup, the description plus annotations cover purpose and safety adequately. The only notable gap is an explicit team-format example; output details are lightly sketched through the stat categories, which is acceptable given no output schema and low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50%: player has an example, but team has none. The description clarifies that stats are for one player on a team and lists sport-specific stat types, but it does not specify what team values look like (e.g., city vs franchise name) or otherwise compensate for the bare team parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific resource and scope: season stats for one player on a team, with sport-specific stat categories. This clearly differentiates it from sibling tools like get_roster (players) and get_team_schedule (games), and the title verb 'get' is supported by the descriptive noun phrase.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for player stat lookups and indicates season-level data, but it never says when not to use it or names an alternative such as get_roster or list_teams. No explicit routing or exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rosterGet rosterBRead-onlyIdempotentInspect
Full roster grouped by position, with jersey numbers.
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already disclose read-only, idempotent, non-destructive behavior. The description adds useful output-organization details (grouped by position, jersey numbers) but no further behavioral traits such as data source or response size.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that states the output shape and its key attribute (jersey numbers) with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one obvious required parameter and annotations covering safety, the description plus schema are sufficient to invoke it. It describes the return grouping and fields; only the lack of parameter format guidance prevents a higher score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for the required 'team' parameter, and the description does not explain accepted formats, whether it is a team name or ID, or how to obtain valid values. The parameter is self-evident in context, but the description does not compensate for the missing schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a full roster grouped by position with jersey numbers, and the name/title supply the get/resource framing. It does not explicitly contrast with sibling tools, but the roster resource is distinct from injury reports, odds, player stats, schedule, and team lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance or alternatives are provided; the only signal is the name get_roster. An agent must infer that this is for roster queries and is not told how to choose among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_team_scheduleGet team scheduleARead-onlyIdempotentInspect
Upcoming games for a team (dates, opponent, venue).
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes | Team name, nickname, slug, or abbreviation - e.g. 'Chiefs', 'newyorkknicks', 'NYK' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the read-only, idempotent, non-destructive nature of the tool, so the description's burden is lower. It adds useful context about the returned games' attributes (dates, opponent, venue), but offers no details on ordering, time range, pagination, or behavior for unknown teams.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no wasted words, clearly conveying the resource and the key returned fields. It is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter, read-only schedule lookup, the description covers the essential output shape and is supported by clear annotations. The main gaps are minor—ordering, timezone, or exact date range of 'upcoming'—but the tool is simple enough that the description is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the 'team' parameter thoroughly with examples of accepted formats, so schema coverage is 100%. The description adds no additional parameter-level semantics beyond referring to 'a team.'
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The title and description make the tool's purpose obvious: retrieve upcoming games for a team, listing dates, opponent, and venue. It is clearly distinguishable from the sibling tools, which cover injuries, odds, player stats, rosters, and team lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for upcoming schedule information, but it does not explicitly state when to use it over alternatives or what it excludes, such as past games or full season schedules. Usage context is clear but not fully specified.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_teamsList teamsARead-onlyIdempotentInspect
List all 62 pro teams 0to100 covers (32 NFL + 30 NBA) with hub URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| sport | No | Optional league filter |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only and idempotent, so the description is not burdened with safety disclosure. It adds useful behavioral context by specifying the exact scope (all 62 teams) and the output includes hub URLs, which goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every element—scope, exact count, leagues, and output type—earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no output schema, the description adequately communicates scope and output (teams with hub URLs), and the schema covers the optional filter. It could be slightly more complete by describing the return shape (e.g., field names) or explicitly mentioning the filter, but it is sufficient for an agent to call correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage and clearly documents the optional sport enum with 'Optional league filter'. The description reinforces the league breakdown but does not add new parameter syntax or semantics beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resource ('all 62 pro teams') with an exact breakdown (32 NFL + 30 NBA) and what is included (hub URLs). It does not explicitly distinguish itself from sibling tools, but the resource and output are specific enough to avoid confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for retrieving the full team list with hub URLs, but it provides no explicit guidance on when to choose it over alternatives or when not to use it. There are no exclusions or sibling comparisons, though the intended use is fairly obvious from the wording.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
get_injury_report - First observed
get_live_odds - First observed
get_player_stats - First observed
get_roster - First observed
get_team_schedule - First observed
list_teams
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Live NFL, MLB, and NBA sports intelligence: injury signals, identity resolution, projections.
NFL/NBA/MLB/NHL/PGA + DFS and prediction-market data. Browse free; query with a free API key.
- NFL MCPOAuthcom.nflmcp
NFL analytics tools for AI agents: stats, fantasy, injuries, schedules, and advanced analysis.
Live sports stats and pre-computed analysis for AI assistants across NBA, MLB, NFL, and NHL.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides access to comprehensive sports data from 5 major leagues (NBA, NFL, MLB, EPL, NHL) including teams, players, games, statistics, standings, injuries, and betting odds through 67+ endpoints. Enables users to query sports information and analytics through natural language.12MIT
- AlicenseAqualityDmaintenanceEnables access to live ESPN sports data for NFL, NHL, and NBA leagues, including standings, scores, schedules, team info, and playoffs through natural language queries.6191MIT
- AlicenseNot gradedqualityNot gradedmaintenanceProvides comprehensive access to ESPN's sports APIs for live scores, team information, news, and statistics across NFL, NBA, MLB, NHL, college sports, and major soccer leagues with advanced filtering and real-time updates.19-
- AlicenseNot gradedqualityAmaintenanceGet live scores, schedules, standings, team and player data for NFL, NBA, MLB, NHL, soccer, and more via MCP.3442Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct resource: injuries, odds, player stats, roster, schedule, and the universe of teams. There is no overlap or ambiguity between them.
All tools use a clear verb_noun pattern: get_* for specific resources and list_teams for the full collection. This is consistent and predictable.
Six tools is well-scoped for a read-only sports data server covering NFL and NBA information. Each tool covers a meaningful slice of the domain without bloat.
The surface covers the main pre-game and season data needs: teams, rosters, schedule, stats, injuries, and odds. Only a minor gap exists for something like game results or standings, which is not central to the apparent betting/team-info focus.