npm betbetter-mcpstdioMITupdated 1mo ago
An MCP server that gives any AI assistant access to sports model win probabilities and fair odds across nine sports — no API key, no sign-up, free to use.
What can you do with betbetter mcp?
betbetter-mcp
An MCP server that gives any AI assistant access to sports model win probabilities and fair odds across nine sports — no API key, no sign-up, free to use.
Data comes from the Bet Better open model API, published under CC BY 4.0.
What it gives you
For every upcoming fixture the model rates, you get:
| Field | Meaning |
|---|---|
game |
The fixture, Away @ Home |
gameTimeUtc |
Scheduled start, UTC |
market |
Head to Head, Spread, Total Points, player props… |
selection |
The team, player or outcome being rated |
modelProbabilityPct |
Estimated chance it lands, 0–100 |
fairOdds |
Decimal odds implied by that probability |
confidence |
HIGH, LEAN or LONG-SHOT |
verdict |
A one-sentence plain-English summary |
Leagues: AFL · MLB · NBA · NFL · NHL · NCAAF · UFC · WNBA · WTA tennis · EPL · La Liga · Serie A · Bundesliga · Ligue 1 · World Cup.
Install
npx betbetter-mcp
Claude Desktop / Claude Code
Add to your MCP config:
{
"mcpServers": {
"betbetter": {
"command": "npx",
"args": ["-y", "betbetter-mcp"]
}
}
}
Tools
| Tool | What it does |
|---|---|
list_leagues |
Lists every league slug and feed type available |
get_model_picks |
Rated selections for one league, filterable by minimum probability |
find_fixture |
Searches every league for a team or player and returns their rated selections |
Example
"What does the model think about the Geelong game this weekend?"
{
"game": "Geelong Cats @ Collingwood Magpies",
"market": "Head to Head",
"selection": "Geelong Cats",
"modelProbabilityPct": 54.9,
"fairOdds": 1.82,
"confidence": "LEAN"
}
What this does not do
It publishes no bookmaker prices. There is no bookmaker name, market price or implied probability anywhere in the feed, and none is planned — the underlying odds data is licensed under terms that allow publishing derived work but not redistributing the feed. Everything here is the model's own output, so it cannot tell you where to bet or at what price.
Configuration
| Variable | Default | Purpose |
|---|---|---|
BETBETTER_BASE_URL |
https://betbetter.world |
Override the API origin (testing) |
Responses are cached upstream for 15 minutes. Feeds are empty out of season — that is expected, not an error.
Responsible gambling
18+. Gambling involves risk and most people lose money. These are model estimates for research, not betting advice, and not a guarantee of any outcome. A selection rated 70% is meant to lose roughly three times in ten.
If gambling is causing you harm: Gambling Help Online (AU) or 1-800-GAMBLER (US).
Licence
MIT for this server. The underlying data is CC BY 4.0 — free to use with attribution to Bet Better.
Install
Add betbetter mcp to your client. Pick the one you use.
claude mcp add betbetter-mcp -- npx -y betbetter-mcpcodex mcp add betbetter-mcp -- npx -y betbetter-mcpamp mcp add betbetter-mcp -- npx -y betbetter-mcp{
"mcpServers": {
"betbetter-mcp": {
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"betbetter-mcp": {
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"betbetter-mcp","command":"npx","args":["-y","betbetter-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"betbetter-mcp": {
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"betbetter-mcp": {
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"betbetter-mcp": {
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"betbetter-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"betbetter-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"betbetter-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"betbetter-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y betbetter-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
betbetter mcp exposes 3 tools to a connected agent.
- list_leagues
- Lists every league slug and feed type available
- get_model_picks
- Rated selections for one league, filterable by minimum probability
- find_fixture
- Searches every league for a team or player and returns their rated selections
Score
67 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 37 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Jul 26, 2026 |