Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Sportradar MCP connector

OAuth 2.1/DCR AnalyticsAIDeveloper Tools

Connect to Sportradar MCP. Browse and search sports data API specs, discover endpoints, check coverage, and access guide pages from your AI workflows.

Sportradar MCP connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'sportradarmcp'
    const identifier = 'user_123'
    // Generate an authorization link for the user
    const { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })
    console.log('Authorize Sportradar MCP:', link)
    process.stdout.write('Press Enter after authorizing...')
    await new Promise(r => process.stdin.once('data', r))
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'sportradarmcp_fetch',
    toolInput: { id: 'YOUR_ID' },
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Search records — Search Sportradar guide pages by query and return matching results with titles and excerpts
  • Search-endpoints records — Search through API paths, operations, and parameters to discover relevant endpoints
  • List-specs records — List all available Sportradar OpenAPI specs
  • List-endpoints records — List all API paths and HTTP methods for a spec, organized by path
  • Get-endpoint records — Get detailed information about a specific API endpoint, including security schemes and parameters
  • Get-coverage records — Find the coverage level for a Sportradar Basketball API

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

sportradarmcp_fetch # Get detailed information about a Sportradar guide page by its ID. 1 param

Get detailed information about a Sportradar guide page by its ID.

Name Type Required Description
id string required The ID of the guide to retrieve. Must use `search` tool to get the ID.
sportradarmcp_get-coverage # Find the coverage level for a Sportradar Basketball API. 0 params

Find the coverage level for a Sportradar Basketball API.

sportradarmcp_get-endpoint # Get detailed information about a specific API endpoint, including security schemes and parameters. 3 params

Get detailed information about a specific API endpoint, including security schemes and parameters.

Name Type Required Description
method string required The HTTP method (e.g. GET, POST, PUT, DELETE).
path string required The API endpoint path (e.g. /api/v1/users).
title string required Title of the OpenAPI spec. Use tool 'list-specs' or 'search-endpoints' to see available specs.
sportradarmcp_list-endpoints # List all API paths and HTTP methods for a spec, organized by path. 1 param

List all API paths and HTTP methods for a spec, organized by path.

Name Type Required Description
title string required Title of the OpenAPI spec. Use tool 'list-specs' or 'search-endpoints' to see available specs.
sportradarmcp_list-specs # List all available Sportradar OpenAPI specs. 0 params

List all available Sportradar OpenAPI specs.

sportradarmcp_search-endpoints # Search through API paths, operations, and parameters to discover relevant endpoints. 1 param

Search through API paths, operations, and parameters to discover relevant endpoints.

Name Type Required Description
pattern string required Search pattern (case-insensitive)