Skip to main content
Glama
DanielTomaro13

sportsdata-mcp

sportsbet_bet_history

Read-onlyIdempotent

Retrieve your Sportsbet bets to confirm a placement is live by matching betId, stake, and price. Filter by pending or settled states.

Instructions

Your own bets at Sportsbet. THIS IS HOW A PLACEMENT IS CONFIRMED — placing answers 202 Accepted, so a bet is only really on once it appears here.

Returns: {betList:[…]} — the account's bets. VERIFIED live 2026-08-28.

THE KEY IS betList, NOT bets. Reading bets returns nothing and looks exactly like an empty account — which is a dangerous false negative when you are checking whether a placement landed.

THIS IS HOW A PLACEMENT IS CONFIRMED. sportsbet_place_bet answers 202 Accepted, which means taken for processing rather than on, so a bet is only really placed once it appears here. Match on the betId the placement returned, and check the STAKE AND THE PRICE, not merely that a bet exists.

filterType takes SETTLED and PENDING — both verified 2026-08-28 alongside limit and includeLegData. PENDING is what you want for reading back a bet you have just placed.

Rows carry betId, receipt, stake, price, placedAt, summary, and per-leg detail including externalClassId / externalMeetingId / externalOutcomeId — the racing external ids that placement itself does NOT use.

Auth: works without a key; SPORTSBET_REFRESH_TOKEN unlocks more if set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many bets.
channelNoClient channel. `cxp` is what the website sends; leave it.cxp
appTokenYesSportsbet's app key — a short constant the web client sends on every /apigw call. Not a personal credential, but not published either; read it from the browser once. Collected by `sportsdata-mcp connect sportsbet`.
dateTypeNoDate window. ALL is what the site sends.ALL
requestIdNoA fresh UUID per call, for Sportsbet's own tracing. Optional here; send a new one each time if you send one at all.
sortFieldNoSort field.DATE
sortOrderNoNewest first.DESC
customerIdYesYour own account number. It is also the `custId` claim inside the access token, so it is not extra authority — the gateway just wants it stated. Collected by `connect`.
filterTypeNoWhich bets. SETTLED is verified; PENDING alone was rejected on probing and may need other parameters alongside it.SETTLED
includeLegDataNoInclude each bet's legs — needed to verify WHAT was bet, not just that something was.
Install Server

TDQS

A4.5/5.0
Behavior5/5

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

The description goes well beyond the readOnly/idempotent annotations by disclosing critical behavioral traps: the response key is `betList`, not `bets`, reading `bets` produces a dangerous false negative, and sportsbet_place_bet's 202 Accepted means processing rather than confirmation. It also documents verified behavior, row fields, and auth behavior, which the annotations do not cover.

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

Conciseness3/5

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

The description is information-dense and front-loaded with the most critical warning, but it is repetitive: 'THIS IS HOW A PLACEMENT IS CONFIRMED' appears twice, and the verified-date caveats add length. Every sentence contributes useful content, yet tighter editing would improve readability without losing value.

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?

With no output schema, the description properly explains the return shape ({betList:[…]}), key row fields, and the false-negative risk. All parameters are already covered by the schema (100%), and the description adds the behavioral caveats needed to use the tool correctly, including filter semantics, placement confirmation, and auth expectations.

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%, so the baseline is 3, but the description adds meaningful parameter guidance: `filterType` values are explained for the placement-readback use case, `includeLegData` is tied to verifying what was bet, and the returned fields give practical meaning to parameters like limit. It also clarifies that auth works without a key, enriching the `appToken`/`customerId` parameter context.

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 clearly states this tool returns the account's own bets ('Your own bets at Sportsbet') and emphasizes its role as the confirmation point for placements. The verb 'Returns' plus the explicit {betList:[…]} result makes the function unmistakable, and the placement-confirmation framing distinguishes it from other Sportsbet read tools.

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?

Strong contextual usage guidance is present: 'PENDING is what you want for reading back a bet you have just placed' and the repeated warning that a bet is only confirmed once it appears here. It does not explicitly name alternative tools to choose instead, but the placement-verification scenario is clearly defined.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DanielTomaro13/sportsdata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server