Getting Started
Coverage MatrixChange LogLog InContact Us
Getting Started

MCP Server

The Sportradar Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop, to interact directly with the Sportradar media APIs and their documentation.



What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Sportradar MCP server provides AI agents with:

  • Direct API access to Sportradar data API functionality
  • Documentation search capabilities
  • Real-time data from your Sportradar account
  • Code generation assistance for sports data integrations


MCP Server Setup

All Sportradar MCP tools are hosted from the same endpoint at https://developer.sportradar.com/mcp.

Configure your AI development tools to connect to this server. Your MCP client configuration may include multiple named profiles, each representing a different tool namespace.

For example, you can define profiles such as:

  • sportradar-soccer
  • sportradar-football
  • sportradar-baseball
  • sportradar-odds

Each profile points to the same URL, but allows you to organize and load only the tools relevant to the sport or product area you want to work with.

You can pass in your x-api-key authorization headers via query parameters, or however headers are configured in your MCP client.

Add to~/.cursor/mcp.json:

{
  "mcpServers": {
    "sportradar-soccer": {
      "type": "http",
      "url": "https://developer.sportradar.com/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    }
  }
}


Available Server Profiles and Tools

We offer several MCP server profiles, all pointing to the same endpoint (developer.sportradar.com/mcp).

This should help your AI dev tools to focus on the intended data subset. Keep this in mind when setting up your queries. For example, use the sportradar-basketball server to search for NBA data. Below are the available profiles, and their included APIs.


MCP Server Profiles

Server

APIs

sportradar-football

NFL API
NCAA Football API
Global American Football API
UFL API
USFL API

sportradar-soccer

Soccer API
Soccer Extended API

sportradar-basketball

NBA API
WNBA API
NCAA Men's Basketball API
NCAA Women's Basketball API
Global Basketball API
NBA G League API
Synergy Basketball API
Unrivaled API

sportradar-hockey

NHL API
NCAA Men's Hockey API
Global Ice Hockey API

sportradar-baseball

MLB API
Global Baseball API

sportradar-odds

Odds Comparison Regular API
Odds Comparison Prematch API
Odds Comparison Futures API
Odds Comparison Live Odds API
Odds Comparison Player Props API
Probabilities API

sportradar-racing

NASCAR API
Formula 1 API
IndyCar API
Formula E API
MotoGP API
Indy Lights API
Rally API

sportradar-images-content

Images API
Editorial Content API

sportradar-insights

NBA Insights API
NFL Insights API
NHL Insights API
MLB Insights API
Betting Splits API

sportradar-tennis

Tennis API

sportradar-golf

Golf API

sportradar-handball

Handball API

sportradar-cricket

Cricket API

sportradar-rugby

Rugby API

sportradar-aussie-football

Aussie Rules Football API

sportradar-badminton

Badminton API

sportradar-bandy

Bandy API

sportradar-volleyball

Beach Volleyball API
Indoor Volleyball API

sportradar-darts

Darts API

sportradar-field-hockey

Field Hockey API

sportradar-futsal

Futsal API

sportradar-mma

MMA API

sportradar-snooker

Snooker API

sportradar-squash

Squash API

sportradar-table-tennis

Table Tennis API

sportradar-more-sports

Beach Soccer API
Curling API
Cycling API
Floorball API
Olympic Medals API
Pesapallo API
Waterpolo API
Winter Sports API


MCP Tools

The following tools are available for each of the above profiles:

  • execute-request
  • get-code-snippet
  • get-endpoint
  • get-request-body
  • get-response-schema
  • get-server-variables
  • list-endpoints
  • list-security-schemas
  • list-specs
  • search-specs


Testing Your MCP Setup

Once configured, you can test your MCP server connection:

  1. Open your AI editor (Cursor, Windsurf, etc.)
  2. Connect to the appropriate server
  3. Start a new chat with the AI assistant
  4. Ask about our sports data! - try our query suggestions to get started

The AI should now have access to your Sportradar account data and documentation through the MCP server.



Tips & FAQs


Query Suggestions

These are just a handful of sample questions to get the ball rolling on querying our data.

  • Use the sportradar-[server-profile] MCP server and tell me how to get live scoring data for [sport / API]?
  • How do I get the most up-to-date standings information for [sport / API]?
  • What leagues do you cover for [API]?
  • What player profile information do you offer for [sport / API]?
  • Generate a code snippet in Python using the MCP helper for the NFL Game Play-by-Play endpoint
  • Build a [coding language] script to return the most up-to-date NFL standings data using the sportradar-football MCP server.
  • Tell me what game statistics are offered for live [sport / API] games using the sportradar-[server-profile] MCP server.
  • How can I set up a playoff bracket for the [sport / API] playoffs using the [MCP Server Name]?
  • Use the Images API to tell me the best way to get the most up-to-date headshot of an MLB player.



❗️

Disclaimer

Please keep in mind that AI-generated responses and code are not curated or validated by Sportradar in any way.

We suggest using our MCP server as a building block in your integration. Always verify responses prior to using in your production environment.