Fonteum — Healthcare Provider Data for VS Code
io.github.fonteum/mcp-server
Source-provenanced US federal healthcare provider data over MCP, with 14-tuple provenance.
client:VS Code
transport:stdio
runtime:npm
Install Fonteum — Healthcare Provider Data in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fonteum-api-key",
"description": "FONTEUM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fonteum-api-base",
"description": "FONTEUM_API_BASE",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@fonteum/mcp"
],
"env": {
"FONTEUM_API_KEY": "${input:fonteum-api-key}",
"FONTEUM_API_BASE": "${input:fonteum-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