fpl-context-mcp
An MCP server that gives Claude (or any MCP client) two tools for answering Fantasy Premier League (FPL) and Premier League football questions:
| Tool | What it does |
|---|---|
query_historical_stats |
Runs a read-only SQL SELECT against a PostgreSQL database of FPL player, fixture and gameweek stats (whatever seasons you've ingested) |
query_press_conferences |
Semantic search over BBC Sport and The Guardian press-conference summaries and injury updates stored in Pinecone |
Two ingestion jobs keep that data populated and current:
| Job | What it does |
|---|---|
ingest_press_content |
Fetches articles from BBC Sport RSS and The Guardian API, embeds them, and upserts into Pinecone |
ingest_match_data |
Fetches fixture and player-stat data from the FPL API, and delta-writes to PostgreSQL |
This server does not fetch live data per-question. The two tools above only read whatever is already sitting in your PostgreSQL database and Pinecone index. Those stores start out empty — you must run the ingestion jobs once to seed them, and then keep running them on a recurring schedule forever, or answers will silently go stale (press results) or stay empty (stats results). This is not a one-time setup step. See Keeping data fresh (ongoing) — it's the single most important thing to get right before handing this to anyone.
Contents
- Quickstart
- Prerequisites
- Installation
- Configuration
- Provisioning your own database (standalone only)
- Seeding data (required before first use)
- Keeping data fresh (ongoing)
- Registering with Claude Desktop
- Running the server standalone
- Verifying connectivity (--check)
- Dry-run mode
- MCP tools reference
- Database schema
- Running tests
- Extending with new press sources
Quickstart
The full path from zero to a working MCP tool, in order. Each step links to details further down.
- Install:
pip install fpl-context-mcp— see Installation. - Provision storage: a PostgreSQL database and a Pinecone index. If you're not reusing The Gaffer's existing storage, run
db/schema.sqlagainst a fresh Postgres database and create a Pinecone index namedthe-gaffer(or your own name) using themultilingual-e5-largemodel — see Provisioning your own database. - Configure: copy
.env.exampleto.envand fill in yourDATABASE_URL,DATABASE_ETL_URL, andPINECONE_API_KEY— see Configuration. - Verify connectivity:
fpl-context-mcp --check— confirms every credential works before you go further. - Seed data: run both ingestion commands once so there's actually something to query — see Seeding data.
- Schedule ongoing ingestion: set up cron (or equivalent) to keep re-running those same two commands indefinitely — see Keeping data fresh. Skipping this is the #1 cause of "the tool returns nothing" reports.
- Register with Claude Desktop: add the server to
claude_desktop_config.jsonand restart Claude — see Registering with Claude Desktop.
Prerequisites
| Requirement | Version |
|---|---|
| Python | 3.11+ |
| PostgreSQL | Any recent version, with a read-only role (e.g. gaffer_readonly) and a read/write role (e.g. gaffer_etl) |
| Pinecone | An index using the multilingual-e5-large model (1024 dims) — free tier works |
You can point this server at The Gaffer's existing PostgreSQL database and Pinecone index if you already run that app, or provision your own — see the next two sections either way.
Installation
From PyPI (recommended)
pip install fpl-context-mcp
This installs three CLI commands: fpl-context-mcp (the MCP server), fpl-context-ingest-press, and fpl-context-ingest-match (the two ingestion jobs — see Seeding data).
With uv
git clone https://github.com/sbanthia92/fpl-context-mcp
cd fpl-context-mcp
uv sync
With pip (from source)
git clone https://github.com/sbanthia92/fpl-context-mcp
cd fpl-context-mcp
pip install -e ".[dev]"
As a dependency of another project
fpl-context-mcp @ git+https://github.com/sbanthia92/fpl-context-mcp.git
Configuration
The server reads all secrets from environment variables. Copy .env.example to .env in your working directory (it's gitignored) and fill in your own values:
# PostgreSQL — read-only connection for the query_historical_stats tool
DATABASE_URL=postgresql://gaffer_readonly:password@localhost:5432/gaffer
# PostgreSQL — read/write connection for the ingest_match_data job
# Falls back to DATABASE_URL if not set
DATABASE_ETL_URL=postgresql://gaffer_etl:password@localhost:5432/gaffer
# Pinecone — required for both the press tool and the ingest_press_content job
PINECONE_API_KEY=pcsk_...
PINECONE_INDEX_NAME=the-gaffer # optional, defaults to 'the-gaffer'
# The Guardian open platform API key
# Register free at https://open-platform.theguardian.com/access/
# Recommended: without a key the Guardian source is skipped (BBC Sport only) —
# the old public 'test' key is rejected by the API.
GUARDIAN_API_KEY=your-key-here
Which variables does each component need?
| Component | Variables required |
|---|---|
query_historical_stats tool |
DATABASE_URL |
query_press_conferences tool |
PINECONE_API_KEY |
ingest_press_content job |
PINECONE_API_KEY (plus GUARDIAN_API_KEY for Guardian articles) |
ingest_match_data job |
DATABASE_ETL_URL (or DATABASE_URL) |
Run fpl-context-mcp --check any time to confirm all of the above are set correctly and reachable — see Verifying connectivity.
Provisioning your own database (standalone only)
Skip this section if you're pointing at an existing The Gaffer database and Pinecone index — they're already set up.
PostgreSQL:
createdb gaffer # or whatever database name you'll use in DATABASE_URL
psql gaffer -f db/schema.sql
db/schema.sql creates the six tables query_historical_stats expects (seasons, teams, gameweeks, players, fixtures, gw_player_stats, plus the player_xpts materialized view) and includes example CREATE ROLE statements for the read-only and read/write roles referenced in .env.example. It's a starting schema, not a full migration tool — adjust types/constraints as needed.
Pinecone:
- Create a free account at pinecone.io if you don't have one.
- Create an index named
the-gaffer(or any name — just setPINECONE_INDEX_NAMEto match) configured for themultilingual-e5-largeintegrated embedding model (1024 dimensions, cosine metric). No separate embedding step needed — the ingestion job and the query tool both call Pinecone's built-in inference. - Grab an API key from the Pinecone console and set
PINECONE_API_KEY.
Both tables and the index start completely empty. Continue to Seeding data.
Seeding data (required before first use)
Both ingestion jobs are plain functions you run directly — nothing runs automatically on pip install or on MCP server startup.
# If installed from PyPI
fpl-context-ingest-press
fpl-context-ingest-match
# If running from source
python -m jobs.ingest_press_content
python -m jobs.ingest_match_data
Run both once, right after configuring your .env, before registering the server with Claude Desktop. Until you do:
query_press_conferenceswill return a message telling you the namespace is unseeded, instead of any article content.query_historical_statswill returnQuery returned no results.for any query, since the tables are empty.
ingest_match_data loads the current season on first run — every team, player and fixture, plus per-player stats for matches already played (the first run can take a while mid-season, since it fetches stats one player at a time). The FPL API only serves the current season, so past seasons aren't backfilled: history builds up over time as you keep the job running, or you can load older seasons into the same tables yourself. The gameweeks table is not written by this job, so it stays empty unless you fill it. ingest_press_content only pulls currently-live articles (BBC/Guardian don't offer deep history), so the press index will be thin until it's had a few days of scheduled runs — that's expected, not a bug.
Keeping data fresh (ongoing)
This is not a one-time step. Fixtures change weekly, player stats update after every match, press articles are deleted from the index after 14 days, and injury/availability news is rewritten on every run so it reflects what FPL currently says (ingest_press_content prunes stale docs each time). If you seed once and never run these jobs again, a query a month later will hit a Pinecone namespace with zero documents (everything aged out) and a Postgres database that's missing every fixture since your last run.
You need something to invoke fpl-context-ingest-press and fpl-context-ingest-match on a recurring schedule, indefinitely, for as long as the MCP server is in use. Pick whichever fits your setup:
Option A — cron (simplest, any Linux/macOS host)
# Press content: nightly at midnight UTC
0 0 * * * /path/to/venv/bin/fpl-context-ingest-press >> /var/log/fpl-context-ingest-press.log 2>&1
# Match data: twice daily during the season (06:00 + 22:00 UTC)
0 6,22 * * * /path/to/venv/bin/fpl-context-ingest-match >> /var/log/fpl-context-ingest-match.log 2>&1
Adjust the match-data cadence to the calendar:
| Period | Recommended cadence |
|---|---|
| PL season (Aug–May) | Twice daily, 0 6,22 * * * |
| World Cup / tournament group stage | Hourly, 0 * * * * |
| World Cup / tournament knockout | Every 6 hours, 0 */6 * * * |
| Off-season | Once daily, 0 8 * * * |
Option B — GitHub Actions in your own private repo (free, no server needed)
Best if you don't have a machine that's always on. You don't fork this project — you create a tiny repo of your own with one file that installs the package from PyPI and runs the two commands on a schedule.
-
Create a new private GitHub repository (any name).
-
Add this file as
.github/workflows/ingest.yml:name: Ingest sports data on: schedule: - cron: "0 6,22 * * *" # twice daily, UTC workflow_dispatch: {} # lets you run it by hand from the Actions tab jobs: ingest: runs-on: ubuntu-latest steps: - uses: actions/setup-python@v5 with: python-version: "3.11" - run: pip install fpl-context-mcp - name: Ingest press content run: fpl-context-ingest-press env: PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} PINECONE_INDEX_NAME: ${{ secrets.PINECONE_INDEX_NAME }} GUARDIAN_API_KEY: ${{ secrets.GUARDIAN_API_KEY }} - name: Ingest match data run: fpl-context-ingest-match env: DATABASE_URL: ${{ secrets.DATABASE_URL }} DATABASE_ETL_URL: ${{ secrets.DATABASE_ETL_URL }}
-
In that repo: Settings → Secrets and variables → Actions → New repository secret, and add
PINECONE_API_KEY,DATABASE_URL, andDATABASE_ETL_URL.GUARDIAN_API_KEYis strongly recommended — without it the Guardian source is skipped and only BBC Sport articles are ingested (register a free key at open-platform.theguardian.com).PINECONE_INDEX_NAMEis optional and defaults tothe-gaffer. -
Open the Actions tab, pick "Ingest sports data", and click Run workflow once to seed your data. From then on it runs by itself on the schedule.
Notes:
- A failed run turns red and GitHub emails you (missing credentials, a database that's unreachable, an API outage), so you'll know if data stops flowing.
- Updates:
pip install fpl-context-mcpgrabs the latest release on every run, so fixes arrive automatically. Pin a version (fpl-context-mcp==0.3.0) if you'd rather upgrade on purpose. - Cost: each run takes about a minute or two, so a twice-daily schedule stays well inside GitHub's free monthly minutes for private repos.
- Why private: GitHub automatically pauses scheduled workflows in public repos after 60 days without a commit. Private repos aren't paused.
Option C — any other scheduler
Managed cron (Render, Railway, Fly.io machines, GCP Cloud Scheduler + Cloud Run Jobs, AWS EventBridge + Lambda/Fargate, systemd timers, Airflow, Dagster, etc.) all work the same way — point it at fpl-context-ingest-press and fpl-context-ingest-match (or the python -m jobs.* equivalents) with the cadence table above and the environment variables from Configuration.
Whichever option you pick, re-run fpl-context-mcp --check afterward to confirm the scheduled job's credentials actually work in that environment — a job that silently fails every night is worse than no job, since nothing tells you the data's gone stale.
Registering with Claude Desktop
Add the server to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
If installed from PyPI (recommended)
{
"mcpServers": {
"fpl-context": {
"command": "fpl-context-mcp",
"env": {
"DATABASE_URL": "postgresql://gaffer_readonly:password@localhost:5432/gaffer",
"PINECONE_API_KEY": "pcsk_..."
}
}
}
}
If running from source
{
"mcpServers": {
"fpl-context": {
"command": "python",
"args": ["/absolute/path/to/fpl-context-mcp/server.py"],
"env": {
"DATABASE_URL": "postgresql://gaffer_readonly:password@localhost:5432/gaffer",
"PINECONE_API_KEY": "pcsk_..."
}
}
}
}
Tip: If you use
uv, replace"python"with"uv"and prepend"run"toargs:"command": "uv", "args": ["run", "/absolute/path/to/fpl-context-mcp/server.py"]
Restart Claude Desktop. You should see fpl-context appear in the tools panel. If either tool returns nothing useful, re-check Seeding data and Keeping data fresh before assuming the server itself is broken.
Running the server standalone
# If installed from PyPI
fpl-context-mcp
# If running from source
python server.py
The server communicates over stdio — it is designed to be launched by an MCP client, not run as a persistent HTTP service. Running it directly is mainly useful for smoke-testing startup and environment variable loading.
Verifying connectivity (--check)
Before registering the server with a client — and any time something seems off — verify that your environment variables are correct and all backends are reachable:
# If installed from PyPI
fpl-context-mcp --check
# If running from source
python server.py --check
Output example:
=== fpl-context-mcp configuration check ===
✅ Pinecone connected (index: 'the-gaffer')
✅ PostgreSQL (RO) connected (localhost:5432/gaffer)
✅ PostgreSQL (ETL) connected (localhost:5432/gaffer)
✅ Guardian API registered key configured
✅ All required components OK
The command exits with code 0 if all required components pass, or 1 if any required component fails. Optional components (Guardian API) emit warnings but do not cause a non-zero exit — a missing GUARDIAN_API_KEY just means Guardian articles are skipped. Note that --check only verifies connectivity — it doesn't tell you whether your tables/index actually have data in them; for that, see Seeding data.
Dry-run mode
Set DRY_RUN=true to fetch data and verify routing without writing anything to Pinecone or PostgreSQL:
DRY_RUN=true fpl-context-mcp
DRY_RUN=true fpl-context-ingest-press
In dry-run mode:
- Tools return a human-readable description of the call that would have been made — the SQL with host, or the Pinecone index/namespace/params — without opening any connection.
- Ingestion jobs still call all external APIs (verifying connectivity) but skip every Pinecone and PostgreSQL write. Log output shows how many documents would have been upserted.
- The server logs a
DRY RUN MODEwarning at startup so it is obvious from the logs.
Accepted values for DRY_RUN: true, 1, yes (case-insensitive). Any other value (or absent) disables dry-run.
MCP tools reference
query_historical_stats
Executes a read-only SQL SELECT against the historical stats database.
Parameters
| Parameter | Type | Description |
|---|---|---|
sql |
string | A SELECT statement. Mutations are rejected before reaching the database. LIMIT is injected automatically if omitted (capped at 100 rows). |
Example prompts
- "Who are the top 10 midfielders by total points this season?"
- "How many goals has Salah scored this season?"
- "Which teams have the best defensive record at home in 2024/25?"
Safety
The tool enforces two layers of protection: a keyword blocklist rejects INSERT, UPDATE, DELETE, DROP, and similar statements before any database call is made, and the database connection uses a read-only role with no write grants.
query_press_conferences
Semantic search over Premier League press coverage ingested from BBC Sport and The Guardian.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
query |
string | — | Natural-language question or topic |
top_k |
integer | 5 | Number of documents to return |
recency_weight |
float | 0.3 | Recency boost: 0.0 = pure semantic similarity, 1.0 = heavy recency bias |
Ranking formula
Results are re-ranked after retrieval:
final_score = semantic_score × (1 + recency_weight × recency_score)
recency_score is 1.0 for an article published today and decays toward 0.1 over 14 days.
Example prompts
- "Any injury concerns for Saka this week?"
- "What did Slot say about Salah's contract situation?"
- "Who is doubtful for Arsenal's next match?"
No results? If the press namespace hasn't been seeded yet, or everything in it has aged out past 14 days, this tool returns a message explaining that instead of an empty response — see Keeping data fresh.
Database schema
The query_historical_stats tool has access to these tables (see db/schema.sql for the full DDL if provisioning standalone):
seasons id, label (e.g. '2025/26'), start_year, is_current
teams season_id, fpl_id, name, short_name, strength,
strength_attack_home/away, strength_defence_home/away
gameweeks season_id, gw_number (1–38), deadline_time, is_current,
is_next, is_finished, average_entry_score, highest_score
players season_id, fpl_id, team_fpl_id, first_name, second_name,
web_name, position (GKP/DEF/MID/FWD), now_cost, form,
total_points, minutes, goals_scored, assists, clean_sheets,
expected_goals, expected_assists, ict_index, status, news
fixtures season_id, fpl_id, gw_number, kickoff_time,
home_team_fpl_id, away_team_fpl_id, home_score, away_score,
finished, home_team_difficulty, away_team_difficulty
gw_player_stats season_id, player_fpl_id, gw_number, fixture_fpl_id,
opponent_team_fpl_id, was_home, minutes, goals_scored,
assists, clean_sheets, bonus, total_points,
expected_goals, expected_assists, ict_index, starts
player_xpts materialized view: player_fpl_id, web_name, team_name,
position, now_cost, expected_points (next GW projection)
Join hint: teams.fpl_id = players.team_fpl_id (within the same season_id).
Running tests
# Install dev dependencies if you haven't already
pip install -e ".[dev]"
# Run the full suite (all mocked — no real DB or API calls)
pytest tests/ -v
# Lint and format
ruff check . && ruff format .
The test suite covers:
| File | What's tested |
|---|---|
tests/test_config.py |
Env var reading, defaults, dotenv loading, dry-run flag |
tests/test_tools_stats.py |
Mutation guard, row formatter, async DB path, dry-run |
tests/test_tools_press.py |
Pinecone query, recency re-ranking, degradation, dry-run |
tests/test_ingest_press_content.py |
BBC/Guardian fetchers, deduplication, orchestration, dry-run |
tests/test_ingest_match_data.py |
Delta filtering, thread coordination, rollback, dry-run |
Extending with new press sources
To add a new press source, subclass _BaseFetcher in jobs/ingest_press_content.py and add an instance to the FETCHERS list. The orchestrator picks it up automatically — no other changes needed.
class MySportsFetcher(_BaseFetcher):
source_name = "My Sports Site"
def fetch(self) -> list[tuple[str, str, dict]]:
# return a list of (doc_id, text, metadata) tuples
...
FETCHERS: list[_BaseFetcher] = [BBCSportFetcher(), GuardianAPIFetcher(), MySportsFetcher()]
Each tuple is (doc_id, text, metadata) where:
doc_id— a stable 32-char hex ID (use_doc_id(source + url))text— the full text to embed, prefixed with the source namemetadata— must includetype,source,recency_score, andpub_timestamp
Release files for fpl-context-mcp 0.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| fpl_context_mcp-0.4.0.tar.gz | 52.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| fpl_context_mcp-0.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 90.0 kB
Release files / fpl_context_mcp-0.4.0.tar.gz
| Download URL | fpl_context_mcp-0.4.0.tar.gz |
|---|---|
| Size | 52.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f0eed29af9cd1e4a68bafe763acc81fc00759ef712e907a8c6988bb7c7ff79ae
|
|
BLAKE2b-256 checksum How to use checksums |
5f73e6361f1b1ae7bb953890210c04807a2e3105420bd61af085997efa096366
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / fpl_context_mcp-0.4.0-py3-none-any.whl
| Download URL | fpl_context_mcp-0.4.0-py3-none-any.whl |
|---|---|
| Size | 37.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cb4cac64538d460f17ca496be3d1dbd8b58dc48c206eadbadc1146cb148a25c2
|
|
BLAKE2b-256 checksum How to use checksums |
06802d3930625f4bf20bed1bd185c18392548b82c0f19da427d8c03fb9e70da7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log