Skip to content
VS Code

painprep mcp server for VS Code

io.github.goingparabolic/painprep-mcp-server

Interventional pain medicine MCP: Medicare checklists, CPT/ICD-10, ASRA, prior-auth & appeals

client:VS Code transport:stdio runtime:npm

Install painprep mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "painprep-license-key",
      "description": "PAINPREP_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "painprep-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "painprep-mcp-server"
      ],
      "env": {
        "PAINPREP_LICENSE_KEY": "${input:painprep-license-key}"
      }
    }
  }
}

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

painprep mcp server in other clients