Skip to content
VS Code

DICOM/HL7/FHIR Interoperability MCP Server for VS Code

io.github.nyxtoolsdev/dicom-hl7-mcp-server

Bridges DICOM, HL7v2, and FHIR with cross-standard mapping and optional PACS connectivity.

client:VS Code transport:stdio runtime:pypi

Install DICOM/HL7/FHIR Interoperability MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dicom-hl7-license-key",
      "description": "DICOM_HL7_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "dicom-hl7-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "dicom-hl7-mcp"
      ],
      "env": {
        "DICOM_HL7_LICENSE_KEY": "${input:dicom-hl7-license-key}"
      }
    }
  }
}

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

DICOM/HL7/FHIR Interoperability MCP Server in other clients