medigami for VS Code
io.github.maximusrufus/medigami
Attested healthcare-finance MCP: bill scans, appeals, denials, rate + ICD/CPT/NPI lookups.
client:VS Code
transport:stdio
runtime:npm
Install medigami in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "medigami-mcp-url",
"description": "MEDIGAMI_MCP_URL",
"password": true
}
],
"servers": {
"medigami": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@medigamiofficial/mcp"
],
"env": {
"MEDIGAMI_MCP_URL": "${input:medigami-mcp-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs