Sportsdata MCP Server

Live sports data & cross-book betting odds — ~500 tools, 28 providers, free, zero-config.

Local serverstdioPython

What is the Sportsdata MCP server?

Live sports data & cross-book betting odds — ~500 tools, 28 providers, free, zero-config. The sportsdata mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

Free & open source (MIT). ~520 tools across 29 providers in Claude Desktop, Cursor, or any MCP client. uvx sportsdata-mcp serve and you're done.

Its toolset

Everything the assistant can do here goes through one of these:

  • Group — Tools
  • afl.public.core — 22
  • afl.public.broadcasting — 9
  • afl.public.content — 8
  • afl.premium.cfs — 1
  • afl.premium.statspro — 1
  • afl.premium.keyserver — 1
  • openf1.reference — 3
  • openf1.results — 5
  • openf1.timing — 5
  • openf1.telemetry — 2
  • openf1.live — 3

Configuration

You will need 4 environment variables: SPORTSDATA_SPEC_FEED_URL, SPORTSDATA_ENTITLEMENT_URL, DATAGOLF_KEY, X_BEARER_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at sportsdata-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Sportsdata's toolset — Group, afl.public.core, afl.public.broadcasting and 11 more — is a fair guide to whether it matches your workflow. It is maintained by DanielTomaro13; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Sportsdata.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the sportsdata mcp server does with a few real requests.

Available tools

ToolWhat it does
GroupTools
afl.public.core22
afl.public.broadcasting9
afl.public.content8
afl.premium.cfs1
afl.premium.statspro1
afl.premium.keyserver1
openf1.reference3
openf1.results5
openf1.timing5
openf1.telemetry2
openf1.live3
mlb.reference22
mlb.schedule5

How to install the Sportsdata MCP server

{
  "mcpServers": {
    "sportsdata": {
      "command": "uvx",
      "args": ["sportsdata-mcp"],
      "env": {
        "SPORTSDATA_SPEC_FEED_URL": "your-value",
        "SPORTSDATA_ENTITLEMENT_URL": "your-value",
        "DATAGOLF_KEY": "your-value",
        "X_BEARER_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SPORTSDATA_SPEC_FEED_URLEndpoint or connection string the server talks to.Yes
SPORTSDATA_ENTITLEMENT_URLEndpoint or connection string the server talks to.Yes
DATAGOLF_KEYCredential the server authenticates with.Yes
X_BEARER_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Sportsdata to Group.
  • Use Sportsdata to afl.public.core.
  • Use Sportsdata to afl.public.broadcasting.

Frequently asked questions

It connects Sportsdata to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Group, afl.public.core, afl.public.broadcasting, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Sportsdata directly.