Skip to main content
Glama
dumkoder

Statos MCP Server

by dumkoder

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
STATOS_API_KEYYesRequired. Your Statos API key.
STATOS_API_BASENoBase URL for the Statos API. Defaults to https://api.statos.pro. Use https://api.sandbox.statos.pro for sandbox.https://api.statos.pro

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_picksA

List Statos's current betting suggestions, optionally filtered by league, market type, minimum edge, or quality tier. Each pick carries the model's claimed probability, best available odds (where attached), implied edge, and a confidence label (low/medium/high). Picks are computed live from upcoming fixtures; volumes vary by day. Use this for 'what does Statos suggest today?' type queries.

get_match_picksA

Fetch every suggestion the Statos engine has emitted for a single match. Useful for per-match analysis: 'what does Statos think about match X across every market?'. Returns the same BetSuggestion shape as list_picks but scoped to one match.

list_leaguesA

List the soccer leagues the Statos engine tracks (filtered to what the API-key holder's plan permits). Each league carries an id you can pass to list_picks for filtering, plus name, country, continent, and an is_specialized flag indicating leagues the engine biases toward. Useful for discovery: 'which European leagues can I see?' or 'show me the specialized leagues only'.

get_accountA

Return the API-key holder's account info: email, role (silver/gold/diamond/admin), subscription status, and the effective role (trial-elevated while a trial is active). Useful for an AI assistant to explain what plan the user is on and which leagues they have access to. Read-only.

suppress_marketA

ADMIN kill switch: stop Statos emitting a (league × market) for a time window WITHOUT a deploy — e.g. during the World Cup if 'cards' starts firing 30% below claimed hit rate. Requires an admin key with the admin:market_suppressions scope. league_id 0 = all leagues. Reversible via unsuppress_market or expiry. Use sparingly.

list_suppressionsA

List the currently active market suppressions (the kill switches in effect). Read-only; same admin scope as suppress_market.

unsuppress_marketA

Cancel an active market suppression by id, immediately restoring emission (within ~60s). Requires the admin:market_suppressions scope.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct resource and action: account retrieval, suppression listing, pick listing, per-match pick retrieval, league listing, and suppression creation/cancellation. The only potential overlap (list_picks vs get_match_picks) is clearly differentiated by scope and description.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_account, list_suppressions, list_picks, get_match_picks, list_leagues, suppress_market, unsuppress_market). Verb choice and structure are predictable throughout.

Tool Count5/5

Seven tools is well-scoped for a betting suggestions server: read operations for account, leagues, and picks, plus admin suppression management. Each tool earns its place with no redundancy.

Completeness5/5

The server covers account info, discovery (leagues), picks retrieval (global and per-match), and a full suppression lifecycle (list, create, cancel). No obvious gaps exist for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues