openfoot mcp for VS Code
io.github.bartokulus/openfoot-mcp
Football fixtures, standings, lineups, live events and shot-level xG across 75 competitions.
client:VS Code
transport:stdio
runtime:npm
Install openfoot mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openfoot-api-key",
"description": "OPENFOOT_API_KEY",
"password": true
}
],
"servers": {
"openfoot-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"openfoot-mcp"
],
"env": {
"OPENFOOT_API_KEY": "${input:openfoot-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs