Skip to main content
Glama

Server Details

Grounded sports predictions plus European soccer and tennis arbitrage data for AI agents.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
yaotsakpo/ledgerfc-mcp
GitHub Stars
1
Server Listing
ledgerfc-mcp

TDQS

B3.2/5.0

Scored across 13 tools

Disambiguation4/5

Most tools target clearly distinct resources or actions, but get_predictions and get_value_bets overlap conceptually as both return upcoming predictions with model-vs-market edge, differing mainly by PRO status and positive edge filtering. The CLV-related tools (get_contributor_score, get_leaderboard, get_track_record) are also related, though each has a distinct purpose.

Naming Consistency4/5

The naming pattern is mostly consistent with a get_<resource> convention across the majority of tools. Minor deviations include fetch and search as verbs instead of get_, and the abbreviated get_arbs instead of a more consistent get_arbitrage_opportunities.

Tool Count5/5

With 13 tools, the server is well-scoped for a prediction/betting platform. Each tool serves a clear function in the workflow: discovering predictions, placing bets, viewing bets/balance, submitting predictions, and checking CLV/leaderboard data. The count feels complete without bloating the surface.

Completeness4/5

The domain is well covered: search/fetch predictions, view upcoming picks, place paper bets, track bets and balance, submit predictions, and review CLV/leaderboard stats. Minor gaps exist such as no cancel/void bet operation or more granular market data, but agents can execute the core workflow without dead ends.

Available Tools

13 tools
fetchBInspect

Fetch the full prediction document for a search result id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesA result id from search, e.g. pred:123.

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are present, so the description bears full responsibility for behavioral disclosure. It only states the action 'fetch', implying a read operation, but does not mention whether the returned 'full prediction document' is large, whether there are any side effects, or any other behavioral characteristics. Given the tool retrieves a 'full document', some clarification of response size or content would be expected.

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 description is a single, concise sentence that front-loads the action and resource. It contains no filler or repetition, making it highly efficient and easy to parse.

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

Completeness2/5

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

With no output schema and no annotations, the description leaves out what the 'full prediction document' actually contains and when this tool should be chosen over its many siblings. It also doesn't clarify whether the tool is read-only. The low complexity of the tool is acknowledged, but the missing usage context and output expectations make it incomplete for an agent.

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

Parameters3/5

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

The schema already fully documents the only parameter 'id' with a type, description, and example ('pred:123'). The tool description adds no additional meaning beyond what the schema provides. With 100% schema description coverage, this is at the baseline of 3.

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?

The description clearly specifies the verb 'fetch' and the resource 'full prediction document', and qualifies it with the condition 'for a search result id'. This makes the purpose specific and distinguishable from broader tools like get_predictions or get_track_record. However, it doesn't explicitly name alternatives, so it misses the top tier.

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?

The description implies usage after a search because it requires a 'search result id', but it doesn't explicitly state when to use this tool versus siblings like get_track_record or get_predictions. No exclusions or alternative conditions are provided, leaving the agent to infer the appropriate context.

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

get_arbsCInspect

PRO: recently detected live arbitrage opportunities. Needs a Pro key, via an Authorization: Bearer header (preferred) or the api_key argument.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional Pro API key (get one with /key in the Ledger FC Telegram bot). Preferred instead: send it as an Authorization: Bearer header, so it never enters the conversation.
live_rescanNoIf true, fetch fresh odds NOW and return current arbs (age ~0) instead of logged ones. Rate-limited (costs API credits). Falls back to logged arbs if unavailable.
within_secondsNoLook-back window in seconds. Default is tight because arbs die fast; widen only for a historical view.

TDQS

C2.9/5.0
Behavior2/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 mentions the authentication requirement (Pro key, Bearer header) but does not state whether the operation is read-only, whether it has side effects, or any rate limits or caching behavior. The live_rescan parameter hints at rate limits in the schema, but the main description does not disclose this. For a tool with no annotations, this is a significant gap.

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 description is two sentences with zero waste. The purpose is front-loaded ('PRO: recently detected live arbitrage opportunities') and the authentication note is brief. Every word earns its place; there is no repetition or filler.

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

Completeness2/5

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

The tool has no output schema, and the description does not mention what the return value looks like or any structural details. It also omits important behavioral context like the look-back window and the fallback to logged arbs, which are only explained in the parameter schema. For an agent to correctly invoke and interpret results, more context is needed – especially given the absence of annotations and output schema.

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

Parameters3/5

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

Schema description coverage is 100%, with each parameter thoroughly explained (e.g., live_rescan describes behavior, costs, and fallback). The description itself adds no parameter-specific information beyond the overall purpose, so the baseline 3 applies. The schema handles the heavy lifting, and the description does not need to repeat it.

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?

The description clearly states it retrieves 'recently detected live arbitrage opportunities' – a specific verb and resource. It is distinguishable from siblings like get_predictions or get_value_bets by the 'arbitrage' focus, though it does not explicitly differentiate itself from similar tools. The purpose is clear enough for an agent to know what it does.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as get_predictions or get_value_bets. The only practical note is the Pro key requirement, which is a prerequisite, not a selection criterion. The agent is left to infer usage context from the purpose alone, which is insufficient given the sibling set.

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

get_balanceCInspect

Your paper-points balance (not cash).

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idYes

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only clarifies that the balance is in paper-points, not cash. It does not state that the operation is read-only, requires no side effects, or mention any authentication or rate-limit considerations. No contradictions, but the behavior is essentially undisclosed.

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 description is a single, front-loaded sentence with no filler. Every word contributes meaning, and the parenthetical clarification adds value without extra length. Appropriate size for a simple tool.

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

Completeness2/5

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

For a tool with a required parameter and no output schema, the description is too sparse. It does not explain what agent_id should be set to, what the response shape is, or how this fits among the many sibling tools (e.g., get_my_bets, place_bet). An agent would likely need external context to use it correctly.

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

Parameters1/5

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

The description provides zero explanation of the required agent_id parameter, and the schema description coverage is 0%. Since the description is the only source of parameter semantics, leaving agent_id unexplained forces the agent to guess that it identifies the user. This is a critical gap.

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?

The description clearly specifies 'paper-points balance' and explicitly contrasts with 'cash', making the resource unambiguous. It lacks an explicit verb like 'retrieves' or 'gets', but the intent to return the balance is evident. There is no direct sibling that serves the same purpose, so differentiation is not an issue.

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?

The phrase 'Your paper-points balance' implies the tool is used when you want to view your balance, but it does not state when to use this over alternatives like get_my_bets or get_track_record. No exclusions or alternative conditions are provided, so usage guidance is only implicit.

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

get_betCInspect

One paper bet by id.

ParametersJSON Schema
NameRequiredDescriptionDefault
bet_idYes

TDQS

C2.7/5.0
Behavior1/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It only states 'One paper bet by id,' offering no information about side effects, read-only nature, error conditions, or rate limits. For a get operation this is a minimal gap, but the description adds no meaningful behavioral context beyond the basic action.

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

Conciseness4/5

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

The description is a single, front-loaded sentence with no fluff. It efficiently conveys the essential purpose. While it is very brief, it is not overly verbose; the structure is clean and easily parseable by an agent.

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

Completeness2/5

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

Given the low complexity (one simple parameter, no output schema, no annotations), the description provides the core purpose but omits usage context and behavioral details. The agent lacks information about when to choose this over get_my_bets, what a 'paper bet' implies, or any response expectations. It is barely adequate for a trivial get operation but falls short for robust agent decision-making.

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

Parameters3/5

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

The schema documents one parameter, bet_id (integer), with 0% description coverage. The description's phrase 'by id' explicitly maps bet_id to the bet identifier, which adds modest semantic value. However, it does not elaborate on required formats, constraints, or relationships, so it only partially compensates for the lack of schema-level documentation.

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?

The description states a clear verb (get) and resource (paper bet) with an identifier ('by id'), making it obvious that this tool retrieves a single bet. While it doesn't explicitly name sibling tools, the 'by id' phrasing distinguishes it from list operations like get_my_bets or get_arbs.

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

Usage Guidelines2/5

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

No guidance is provided about when to use this tool versus alternatives. There is no mention of context, prerequisites, or exclusions. The agent must infer from the name and description that it is appropriate when a specific bet_id is available.

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

get_contributor_scoreDInspect

A contributor's CLV record.

ParametersJSON Schema
NameRequiredDescriptionDefault
contributor_idYes

TDQS

D1.3/5.0
Behavior1/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. The description only states 'A contributor's CLV record,' which neither confirms nor denies side effects, return format, errors, or read-only behavior. It doesn't say whether it's a read operation, whether it might fail, or what output to expect. This is essentially a placeholder and provides no behavioral transparency.

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

Conciseness2/5

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

The description is a single short sentence, which is concise, but it is under-specified. There is no structure—no front-loaded action, no breaking into components. It is more of a label than a usable description. Conciseness is good, but it sacrifices necessary detail.

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

Completeness1/5

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

Given the low complexity (1 parameter) and no output schema, the description should compensate by explaining the meaning of CLV, the return value, and when to use it. It does none of that. The description is far from complete for an agent to correctly invoke this tool, especially among many similar-looking siblings.

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

Parameters1/5

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

The schema has a single parameter, contributor_id, with 0% schema description coverage. The tool description does not elaborate on what contributor_id means, what format it should be in, or how it relates to the CLV record. The parameter is self-explanatory from its name, but the description adds no semantic value beyond the schema field name.

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

Purpose2/5

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

The description 'A contributor's CLV record.' is a noun phrase that vaguely indicates the tool returns some kind of record, but it doesn't explicitly state an action like 'get' or 'retrieve'. It fails to differentiate from sibling tools such as get_track_record or get_predictions, which also likely return records. The purpose is not fully clear—what is a CLV record and what does the agent do with it?

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

Usage Guidelines1/5

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

There is no guidance on when to use this tool versus alternatives. The description doesn't mention any context, prerequisites, or conditions under which an agent should select this tool. With 12 sibling tools, the lack of any usage direction is a significant gap.

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

get_leaderboardBInspect

Contributors ranked by CLV (reputation points, not cash).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It mentions the ranking metric but omits details like whether it's a full list, pagination, sorting direction, or any limits—information an agent might need to interpret the result.

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 description is a single sentence of clear, front-loaded information. Every word adds value, and there is no redundant or filler content, making it highly concise and well-structured.

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

Completeness3/5

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

The description gives the core purpose but could be more complete for a no-output-schema tool. It doesn't mention how many contributors are returned, whether the list is ordered ascending or descending (though 'ranked' implies order), or if there are any limits—minor gaps for a simple list operation.

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?

The tool has zero parameters and the schema shows no properties, so there is nothing to explain. According to the rubric, a zero-parameter tool gets a baseline score of 4 since the description does not need to compensate for schema gaps.

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?

The description clearly states the tool returns a ranking of contributors by CLV, with the clarifying caveat that CLV means reputation points, not cash. This is a specific verb-resource pairing that distinguishes it from other getters like get_contributor_score, though it doesn't explicitly name alternatives.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus sibling getters or how it fits into a workflow. The description only states what it does, leaving the agent to infer applicability without explicit context.

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

get_my_betsCInspect

Your paper bets, newest first.

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idYes

TDQS

C2.7/5.0
Behavior2/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 mentions 'newest first' as a sorting behavior, but it does not indicate that this is a read-only operation, whether there are side effects, rate limits, or any other behavioral constraints. For a getter with no annotations, this is a significant gap.

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

Conciseness4/5

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

The description is a short, front-loaded phrase that directly states the resource and ordering without any fluff. It is efficient and to the point, which is good for conciseness, though it comes at the cost of missing critical context. For what it says, it is well-structured and appropriately brief.

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

Completeness2/5

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

Given the simplicity of the tool (one parameter, no output schema), the description is still incomplete. It does not explain the purpose of the agent_id parameter, does not differentiate from siblings like get_bet or get_predictions, and does not mention potential pagination, filtering, or limits. An agent cannot confidently determine when to use this tool or how to fill the parameter correctly.

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

Parameters2/5

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

The schema has one parameter 'agent_id' with no description, and schema description coverage is 0%. The description says 'Your' which hints that agent_id identifies whose bets, but it does not explicitly state that agent_id is the required identifier or how it is used. The description adds minimal meaning beyond the parameter name, so it fails to compensate for the lack of schema documentation.

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?

The description 'Your paper bets, newest first' clearly specifies the resource (paper bets) and the owner (your), which distinguishes it from siblings like get_arbs or get_value_bets. It also states the ordering. However, it does not name a specific verb, though 'get' is implied by the tool name. It is specific enough to differentiate from most siblings but lacks explicit reference to alternatives.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as get_bet (single bet) or get_track_record. The description implies it is for retrieving the user's own bets, but it does not state conditions, exclusions, or when another tool would be more appropriate. An agent would have to infer usage from the name and description alone.

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

get_predictionsBInspect

Upcoming predictions with probabilities and model-vs-market edge.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax predictions to return.
leagueNoFilter to one league code, e.g. EPL.

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It implies a read-only operation by saying 'Upcoming predictions', but does not explicitly state that no modifications occur, nor does it mention authentication, rate limits, or pagination. It adds some behavioral context (returns probabilities and edge) but lacks explicit safety or side-effect disclosure.

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?

A single, front-loaded sentence with no superfluous words. It starts with the core purpose ('Upcoming predictions') and then specifies the included data. This is efficient and well-structured, making it easy for an agent to quickly grasp the tool's function.

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 read-only tool with two optional parameters and no output schema, the description covers the essential return content. However, it lacks context about how this tool relates to siblings (e.g., whether predictions overlap with value bets) and does not clarify the meaning of 'model-vs-market edge'. Adding a brief usage note would improve completeness, but as-is it is mostly adequate.

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

Parameters3/5

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

The schema covers both parameters (limit and league) with descriptions, achieving 100% coverage. The tool description does not add any additional semantic meaning beyond the schema, which is acceptable given the schema's clarity. The baseline of 3 is appropriate because the schema already handles parameter explanation adequately.

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?

The description clearly states the resource ('Upcoming predictions') and the specific data included ('probabilities and model-vs-market edge'). It is a full sentence with a specific verb inferred from the name. While it doesn't explicitly name a sibling to differentiate, the content distinguishes it from related tools like value bets or arbs by focusing on predictions with edge.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as get_value_bets or get_arbs. The description does not provide any context about selection criteria, prerequisites, or scenarios where this tool is preferred. This leaves an agent to infer usage, which is a significant gap.

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

get_track_recordDInspect

Honest settled record + high-confidence subset + CLV.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

D1.8/5.0
Behavior1/5

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

With zero annotations, the description must cover behavioral disclosure, but it offers almost nothing. It hints at some concept of 'honest' data and a 'high-confidence subset' but does not explain what the tool does internally, whether it is read-only, what data it accesses, or what the response shape is. This is a critical gap.

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

Conciseness2/5

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

The description is very short, which is good for conciseness, but it sacrifices clarity and structure. It reads as a list of features rather than a sentence with a clear subject-verb-object. Key information is missing, so the brevity is not effective.

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

Completeness1/5

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

The description is severely incomplete. There is no output schema, no annotations, and no parameters, so the description is the only source of information. It fails to explain what 'honest settled record' means, what 'high-confidence subset' entails, or what 'CLV' stands for, nor does it describe the response format. An agent would be guessing on how to interpret the result.

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?

The tool has zero parameters, so the description is not required to explain param semantics. The baseline for 0 parameters is 4, and the description does not contradict or confuse. However, it also does little to clarify what inputs might be expected (none), so it remains at baseline.

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

Purpose2/5

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

The description is a fragment listing components ('Honest settled record + high-confidence subset + CLV') rather than a clear statement of action. It essentially restates the tool's name ('settled record' ≈ 'track record') and adds ambiguous terms without explaining their function. An agent cannot confidently determine what the tool returns or how to use it.

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

Usage Guidelines1/5

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

The description provides no context on when to use this tool versus its many siblings (e.g., get_predictions, get_value_bets). It does not state use cases, prerequisites, or alternatives, leaving the agent to guess.

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

get_value_betsAInspect

PRO: upcoming picks with positive model-vs-market edge. Needs a Pro key, via an Authorization: Bearer header (preferred) or the api_key argument.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional Pro API key (get one with /key in the Ledger FC Telegram bot). Preferred instead: send it as an Authorization: Bearer header, so it never enters the conversation.

TDQS

A3.5/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 burden of behavioral disclosure. It explicitly states the need for a Pro key and the preferred authentication method (Bearer header) to avoid exposing the key in conversation—useful security context beyond the schema. It also implies the tool requires authorization and may fail without it, though it doesn't detail error behavior. This is strong behavioral transparency for a simple tool.

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 description is two sentences with no wasted words. It front-loads the core purpose (PRO value bets) and then the authentication requirement. Every sentence earns its place: the first defines the tool, the second specifies the key handling. Excellent structure and conciseness.

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

Completeness3/5

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

There is no output schema, so the description should convey what the tool returns. It does say 'upcoming picks' which gives a general idea, but it doesn't specify the format, pagination, fields, or any error conditions (e.g., missing key). For a simple one-param tool with no output schema, this is adequate but not complete—an agent might benefit from knowing the response structure or that results are limited to upcoming picks only.

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

Parameters3/5

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

The input schema provides 100% coverage for the single optional api_key parameter, including its description and how to obtain it. The description adds a note about preferring the Authorization header, but that's not a schema parameter. Since the schema already explains the parameter, a baseline of 3 is appropriate; the description adds minimal extra semantic depth.

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?

The description states a clear verb and resource: 'upcoming picks with positive model-vs-market edge'. It distinguishes itself from sibling tools like get_predictions or get_arbs by focusing on the value-bet aspect (edge vs market), though it doesn't name alternatives explicitly. A 4 is appropriate—clear but not fully differentiated from siblings.

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

Usage Guidelines2/5

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

The description explains authentication requirements (Pro key via Bearer header or api_key argument) but provides no guidance on when to use this tool versus alternatives. It doesn't mention exclusions, scenarios, or compare with sibling tools. Only implied context (PRO, edge) suggests usage, but explicit when/when-not guidance is absent.

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

place_betCInspect

Place a paper bet against our agent's prediction (points only).

ParametersJSON Schema
NameRequiredDescriptionDefault
sideYes
agent_idYes
match_idYes
stake_pointsYesPaper points to stake (min 1).

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits on its own. It mentions 'paper' (suggesting non-real) and 'points only' (stake currency), but it does not state side effects like point deduction from balance, irreversibility, or what happens on success/failure. The agent has no information about consequences of calling this tool.

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

Conciseness4/5

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

The description is a single sentence with no redundant words. It is front-loaded with the action and is appropriately terse. However, it could be slightly longer to convey more necessary context without losing conciseness, so it does not reach a perfect score.

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

Completeness1/5

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

The tool has four required parameters, no output schema, and no annotations. The description provides almost none of the crucial context: parameter meanings, return values, error conditions, or dependencies. An agent cannot correctly invoke this tool without external knowledge of what agent_id, match_id, and side refer to, or what the tool returns. The description is wholly inadequate for the tool's complexity.

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

Parameters2/5

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

Schema coverage is only 25% — only stake_points has a description. The description adds only that stakes are in 'points,' which matches the schema but does not explain the other three parameters (agent_id, match_id, side). The side enum (H/D/A) is unexpanded, and the relationship between parameters (which agent, which match) is unstated. The description adds minimal value over the schema.

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 the action: 'Place a paper bet against our agent's prediction (points only).' It identifies the specific verb ('place'), the resource ('a paper bet'), and the unique scope ('against our agent's prediction'), which distinguishes it from read-only siblings like get_bet or get_predictions. This is a distinct and unambiguous purpose.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as submit_prediction or get_my_bets. The description only states what the tool does, not the context in which it should be chosen, nor any prerequisites or exclusions. An agent would have to infer usage from the name and general domain knowledge.

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

submit_predictionCInspect

Submit a prediction to be scored by CLV (shadow/points).

ParametersJSON Schema
NameRequiredDescriptionDefault
p_awayYes
p_drawYes
p_homeYes
match_idYes
contributor_idYes

TDQS

C2.4/5.0
Behavior2/5

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

No annotations are provided, so the description must fully disclose behavior. It only mentions that predictions are scored by CLV (shadow/points) but does not state side effects, such as whether submissions overwrite existing predictions, authentication requirements, rate limits, or failure modes. This is a significant gap for a write operation.

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 a single sentence with no fluff, so it is concise. However, it is under-specified; being short is not the same as being well-structured since it omits critical details. It could be improved by front-loading key information in a structured format, but for sheer brevity it is acceptable.

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

Completeness1/5

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

For a tool with five required parameters, no output schema, and no annotations, the description is drastically incomplete. It does not explain the expected format of probabilities, what the response will look like, error conditions, or any prerequisites. An agent would struggle to call this tool correctly without additional context.

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

Parameters1/5

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

Schema description coverage is 0%, and the description adds no explanation of the five required parameters (contributor_id, match_id, p_home, p_draw, p_away). The parameter names hint at their meaning (e.g., probabilities), but the description does not clarify units, ranges, or relationships, leaving the agent to guess.

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?

The description states a specific verb ('submit') and resource ('prediction'), and clarifies that it is for shadow/points scoring, which distinguishes it from the sibling 'place_bet'. However, it does not explicitly name any sibling tool, relying on the 'shadow/points' hint for differentiation.

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

Usage Guidelines2/5

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

The description provides no explicit guidance on when to use this tool over alternatives. The phrase 'shadow/points' implies it is for non-real bets, contrasting with 'place_bet', but this is left implicit rather than stated as a usage rule. No exclusions or alternative routing are provided.

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.

  1. 1 tool update
    • Changedget_arbs1 field changed
      • addedInput schema / properties / live_rescan
        Added value: +{
        +  "default": false,
        +  "description": "If true, fetch fresh odds NOW and return current arbs (age ~0) instead of logged ones. Rate-limited (costs API credits). Falls back to logged arbs if unavailable.",
        +  "type": "boolean"
        +}
  2. 2 tool updates
    • Changedget_arbs4 fields changed
      • changedInput schema / properties / api_key / description
        Previous value: -"Pro API key (get one with /key in the Ledger FC Telegram bot)."New value: +"Optional Pro API key (get one with /key in the Ledger FC Telegram bot). Preferred instead: send it as an Authorization: Bearer header, so it never enters the conversation."
      • changedInput schema / properties / within_seconds / default
        Previous value: -3600New value: +180
      • changedInput schema / properties / within_seconds / description
        Previous value: -"Look-back window in seconds."New value: +"Look-back window in seconds. Default is tight because arbs die fast; widen only for a historical view."
      • changedInput schema / required
        Previous value: -[
        -  "api_key"
        -]New value: +[]
    • Changedget_value_bets2 fields changed
      • changedInput schema / properties / api_key / description
        Previous value: -"Pro API key (get one with /key in the Ledger FC Telegram bot)."New value: +"Optional Pro API key (get one with /key in the Ledger FC Telegram bot). Preferred instead: send it as an Authorization: Bearer header, so it never enters the conversation."
      • changedInput schema / required
        Previous value: -[
        -  "api_key"
        -]New value: +[]
  3. 13 tool updates
    • First observedfetch
    • First observedget_arbs
    • First observedget_balance
    • First observedget_bet
    • First observedget_contributor_score
    • First observedget_leaderboard
    • First observedget_my_bets
    • First observedget_predictions
    • First observedget_track_record
    • First observedget_value_bets
    • First observedplace_bet
    • First observedsearch
    • First observedsubmit_prediction

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to query live sports betting odds, best prices, arbitrage, +EV bets, and middles directly through Model Context Protocol tools.
    8
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    MCP-compatible server that gives AI agents access to alternative sports data across 30+ leagues — odds, events, probabilities, settlement, and futures for prediction markets, DFS platforms, and sportsbooks.
    29
    7
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.