PluginBench
MCP Server
Active
MIT

io.github.Goingparabolic/painprep-mcp-server MCP Server

io.github.Goingparabolic/painprep-mcp-server

What is the io.github.Goingparabolic/painprep-mcp-server MCP server?

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

How to install io.github.Goingparabolic/painprep-mcp-server

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • PAINPREP_LICENSE_KEY
    secret

    PainPrep PREMIUM license key (PP-XXXX-XXXX-XXXX). Optional — the free tier works without it.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "painprep-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "painprep-mcp-server"
      ],
      "env": {
        "PAINPREP_LICENSE_KEY": "<YOUR_PAINPREP_LICENSE_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "painprep-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "painprep-mcp-server"
      ],
      "env": {
        "PAINPREP_LICENSE_KEY": "<YOUR_PAINPREP_LICENSE_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "painprep-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "painprep-mcp-server"
      ],
      "env": {
        "PAINPREP_LICENSE_KEY": "<YOUR_PAINPREP_LICENSE_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "painprep-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "painprep-mcp-server"
      ],
      "env": {
        "PAINPREP_LICENSE_KEY": "<YOUR_PAINPREP_LICENSE_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add painprep-mcp-server --env PAINPREP_LICENSE_KEY=<YOUR_PAINPREP_LICENSE_KEY> -- npx -y painprep-mcp-server

Related MCP servers

Longevity medicine MCP: medication dosing, labs, monitoring, drug interactions & intake screening

0
TypeScript
View repository →