Read-only MCP server for licensed Healthpoint HL7 FHIR API access. Users bring their own Healthpoint API key; no Healthpoint data or secrets are bundled.
Overview
healthpoint-rs
Read-only MCP server for licensed Healthpoint HL7 FHIR API access.
- Bring your own licensed Healthpoint API key.
- No Healthpoint data, API keys, or real API payloads are bundled.
- Published as
ghcr.io/edithatogo/healthpoint-mcp:0.1.0, crates.io packages, GitHub release artifacts, Official MCP Registry entry, and Smithery MCPB bundle. - Repository: https://github.com/edithatogo/healthpoint-rs
Runtime environment variables are documented in the repository and in the server config above.
Server Config
{
"mcpServers": {
"healthpoint": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HEALTHPOINT_API_KEY",
"-e",
"HEALTHPOINT_BASE_URL",
"-e",
"HEALTHPOINT_AUTH_SCHEME",
"ghcr.io/edithatogo/healthpoint-mcp:0.1.0"
],
"env": {
"HEALTHPOINT_API_KEY": "<YOUR_LICENSED_HEALTHPOINT_API_KEY>",
"HEALTHPOINT_BASE_URL": "https://uat.healthpointapi.com/baseR4/",
"HEALTHPOINT_AUTH_SCHEME": "x-api-key"
}
}
}
}