healthpoint-rs for VS Code
io.github.edithatogo/healthpoint-rs
Read-only MCP server for licensed Healthpoint HL7 FHIR API access.
client:VS Code
transport:stdio
runtime:oci
Install healthpoint-rs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "healthpoint-api-key",
"description": "HEALTHPOINT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "healthpoint-base-url",
"description": "HEALTHPOINT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "healthpoint-auth-scheme",
"description": "HEALTHPOINT_AUTH_SCHEME",
"password": true
},
{
"type": "promptString",
"id": "healthpoint-geo-search-mode",
"description": "HEALTHPOINT_GEO_SEARCH_MODE",
"password": true
},
{
"type": "promptString",
"id": "healthpoint-timeout-secs",
"description": "HEALTHPOINT_TIMEOUT_SECS",
"password": true
}
],
"servers": {
"healthpoint-rs": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/edithatogo/healthpoint-mcp:0.1.0"
],
"env": {
"HEALTHPOINT_API_KEY": "${input:healthpoint-api-key}",
"HEALTHPOINT_BASE_URL": "${input:healthpoint-base-url}",
"HEALTHPOINT_AUTH_SCHEME": "${input:healthpoint-auth-scheme}",
"HEALTHPOINT_GEO_SEARCH_MODE": "${input:healthpoint-geo-search-mode}",
"HEALTHPOINT_TIMEOUT_SECS": "${input:healthpoint-timeout-secs}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs