Skip to content
VS Code

maxpreps mcp for VS Code

io.github.chrischall/maxpreps-mcp

MaxPreps MCP — high school schedules, scores, records, rosters and stat leaders

client:VS Code transport:stdio runtime:npm

Install maxpreps mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "maxpreps-user-agent",
      "description": "MAXPREPS_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "maxpreps-cache-ttl",
      "description": "MAXPREPS_CACHE_TTL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "maxpreps-min-interval-ms",
      "description": "MAXPREPS_MIN_INTERVAL_MS",
      "password": true
    }
  ],
  "servers": {
    "maxpreps-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "maxpreps-mcp"
      ],
      "env": {
        "MAXPREPS_USER_AGENT": "${input:maxpreps-user-agent}",
        "MAXPREPS_CACHE_TTL": "${input:maxpreps-cache-ttl}",
        "MAXPREPS_MIN_INTERVAL_MS": "${input:maxpreps-min-interval-ms}"
      }
    }
  }
}

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

maxpreps mcp in other clients