Skip to content
VS Code

FHIR MCP Server for VS Code

io.github.wso2/fhir-mcp-server

MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications

client:VS Code transport:stdio runtime:pypi

Install FHIR MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fhir-server-base-url",
      "description": "FHIR_SERVER_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "fhir-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fhir-mcp-server"
      ],
      "env": {
        "FHIR_SERVER_BASE_URL": "${input:fhir-server-base-url}"
      }
    }
  }
}

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

FHIR MCP Server in other clients