For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cursor

Prerequisites

Install

1. Add to Cursor

Open Cursor β†’ Settings β†’ Cursor Settings β†’ MCP β†’ Add new global MCP server

Or edit ~/.cursor/mcp.json directly:

{
  "mcpServers": {
    "sportmonks-football": {
      "command": "npx",
      "args": ["-y", "sportmonks-football-mcp-server"],
      "env": {
        "SPORTMONKS_API_TOKEN": "your_token"
      }
    }
  }
}

Optional environment variables can be added to the env block:

Variable
Description

SPORTMONKS_LOG_FILE

Path for the local tool-call log. Set to off to disable. Defaults to your OS temp directory

SPORTMONKS_DEBUG_URLS

Set to 1 or true to log outbound API URLs to stderr (token redacted). Off by default

2. Restart Cursor

The Sportmonks tools will appear in the Agent panel.

Test it

Open the Cursor Agent and ask:

Project-scoped config

To scope the server to one project only, create .cursor/mcp.json in your project root with the same config above instead of editing the global file.

Updating

The server runs via npx, so you always get the latest published version automatically. No manual update steps needed.

Last updated

Was this helpful?