Skip to content
VS Code

sportscore mcp for VS Code

io.github.backspace-me/sportscore-mcp

Live scores, standings, top scorers, brackets for football, basketball, cricket, tennis. Free API.

client:VS Code transport:stdio runtime:npm

Install sportscore mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sportscore-api-base",
      "description": "SPORTSCORE_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sportscore-ua",
      "description": "SPORTSCORE_UA",
      "password": true
    }
  ],
  "servers": {
    "sportscore-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sportscore-mcp"
      ],
      "env": {
        "SPORTSCORE_API_BASE": "${input:sportscore-api-base}",
        "SPORTSCORE_UA": "${input:sportscore-ua}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

sportscore mcp in other clients