HomeOther › DICOMweb MCP Server

DICOMweb MCP Server

MCP server exposing a DICOMweb DICOM archive to AI assistants via QIDO-RS and WADO-RS.

TypeScript CloudLocal
★ 4 stars Last pushed 2026-05-16 License: MIT

Topics: Biology, Medicine and Bioinformatics

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.0.4)

npx -y dicomweb-mcp-server@0.0.4

Or add to your MCP client config:

{
  "mcpServers": {
    "dicomweb-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "dicomweb-mcp-server@0.0.4"
      ],
      "env": {
        "DICOMWEB_HOST": "<YOUR_VALUE>",
        "DICOMWEB_AUTH": "<YOUR_VALUE>",
        "DICOMWEB_USER": "<YOUR_VALUE>",
        "DICOMWEB_PASS": "<YOUR_VALUE>",
        "DICOMWEB_TOKEN": "<YOUR_VALUE>",
        "DICOMWEB_TIMEOUT": "<YOUR_VALUE>"
      }
    }
  }
}
  • DICOMWEB_HOST required — Base URL of the DICOMweb server (used for both QIDO-RS and WADO-RS requests).
  • DICOMWEB_AUTH — Authentication type: 'basic' or 'bearer'. Omit for unauthenticated access.
  • DICOMWEB_USER — Username for Basic authentication. Required when DICOMWEB_AUTH=basic.
  • DICOMWEB_PASS secret — Password for Basic authentication. Required when DICOMWEB_AUTH=basic.
  • DICOMWEB_TOKEN secret — Bearer token for authentication. Required when DICOMWEB_AUTH=bearer.
  • DICOMWEB_TIMEOUT — Fetch request timeout in milliseconds. Omit to disable timeout.

This server takes extra arguments — see its repository.

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry