Skip to content
VS Code

whistle mcp for VS Code

io.github.mattwerner-sudo/whistle-mcp

Verified staff contacts, schools, and hiring signals across NCAA athletic departments.

client:VS Code transport:stdio runtime:npm

Install whistle mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "whistle-api-key",
      "description": "WHISTLE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whistle-api-base",
      "description": "WHISTLE_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "whistle-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gowhistle-mcp"
      ],
      "env": {
        "WHISTLE_API_KEY": "${input:whistle-api-key}",
        "WHISTLE_API_BASE": "${input:whistle-api-base}"
      }
    }
  }
}

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

whistle mcp in other clients