Skip to content
VS Code

health api for VS Code

io.github.nicodemus941/health-api

Clinical AI for lab analysis, biomarker scoring, health narratives, and risk insights.

client:VS Code transport:stdio runtime:npm

Install health api in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "elabus-api-key",
      "description": "ELABUS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "health-api": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@e-labus/mcp"
      ],
      "env": {
        "ELABUS_API_KEY": "${input:elabus-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

health api in other clients