football-odds-agent
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@football-odds-agentCheck for value matches in the English Premier League this weekend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
football-odds-agent
An MCP (Model Context Protocol) server that gives any MCP client (Claude Desktop, Claude Code, etc.) tools to pull live football odds, check a team's recent form, and flag matches where the bookmaker's implied probability disagrees a lot with a naive form-based estimate.
Why this project
I'm an economics student — market efficiency in prediction markets (of which sports betting odds are a textbook example) is a real topic I already understand, not a borrowed one. This project applies that lens to a live dataset through an MCP agent, instead of just describing the theory.
Important honesty note: find_value_matches computes a disagreement score
between the market price and a very simple recent-form heuristic. A high score
means "the market and this naive model disagree" — it is not a validated
betting edge, and the tool says so in its own output. Real market-efficiency
research would need a much better model, backtesting, and transaction-cost
accounting before any of this could inform a real decision. This project is a
demonstration of MCP tool-calling and data synthesis, not a trading signal.
Related MCP server: FotMoCP
Architecture
MCP client (e.g. Claude Desktop)
│ calls tools over MCP
▼
server.py (MCPServer, 3 tools)
│
├─ get_upcoming_odds() ──▶ clients/odds_client.py ──▶ the-odds-api.com
├─ get_team_form() ──▶ clients/stats_client.py ──▶ football-data.org
└─ find_value_matches() ──▶ analysis.py (pure functions, fully unit-tested)
combines the two above + flags divergenceanalysis.py has zero I/O — it's pure math (implied probability, overround
removal, a naive form-based estimate, a divergence score) so it can be unit
tested without hitting either API. See tests/test_analysis.py.
Tools exposed
Tool | What it does |
| Live 1X2 odds for an upcoming league's matches |
| A team's win/draw/loss record over its last N matches |
| Cross-references odds + form, flags large disagreements |
Setup
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env # fill in your two free API keysGet free keys (no credit card required for either):
ODDS_API_KEY — the-odds-api.com (500 credits/month free)
FOOTBALL_DATA_API_KEY — football-data.org (10 requests/min free)
Run
python server.pyTo use it from Claude Desktop, add it to your MCP server config pointing at
this server.py. See the MCP quickstart
for the exact config file location for your OS.
Test
pytest tests/ -v10 tests, all pure-logic (no API calls, no network, no keys needed).
Known limitations
The form-based probability estimate is deliberately naive (win rate only — no home/away split, no strength-of-opponent adjustment, no injuries/lineups). It exists to give the divergence score something independent to compare the market against, not to be predictive on its own.
find_value_matchesrequires you to manually map match labels to football-data.org team ids (team_idsparameter) — there's no automatic team-name matching between the two APIs yet.Free-tier rate limits (500/day odds, 10/min stats) are enough for exploring a few leagues, not for scanning every match in every league continuously.
What I'd do next
Automatic team-name → team-id resolution between the two APIs.
A better form model (home/away split, opponent strength, recency weighting).
Backtest the divergence score against historical results before claiming any predictive value.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
API-Football MCP — comprehensive soccer/football data
Sports Game Odds MCP — wraps the Sports Game Odds API (sportsgameodds.com)
The Odds API MCP — sportsbook odds across 70+ books, 30+ leagues
Football fixtures, standings, and odds intelligence for AI agents.
Related MCP Servers
- FlicenseAqualityCmaintenanceProvides live football data through MCP tools, enabling users to fetch today's matches and top scorers for competitions like the Premier League or World Cup.2
- AlicenseAqualityCmaintenanceEnables MCP clients to access live football data from FotMob, including match stats, team form, injuries, and player workload, without making predictions.101MIT

rapidoddsapi-mcpofficial
AlicenseAqualityCmaintenanceMCP server for RapidOddsAPI that provides bookmaker odds, live scores, arbitrage and value bets to AI assistants. It supports querying sports, odds, results, and betting opportunities with credit-based usage.5MIT- AlicenseAqualityCmaintenanceMCP server that connects AI assistants to the Statos football analytics platform, enabling natural language queries for match predictions, betting picks, league information, and admin market-suppression controls.7151MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ntinosgkiou-code/mcp-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server