DICOMweb MCP Server
The DICOMweb MCP Server allows AI assistants to search, inspect, read reports, and render medical imaging data from a DICOMweb-compliant DICOM archive through natural language.
Search Studies (
find-studies): Query DICOM studies using filters like patient name, date range, or modality; results sorted newest first.Search Series (
find-series): Find series within a study, filtered by modality, description, or other DICOM attributes.Search Instances (
find-instances): List instances within a series, sorted by instance number, with pagination support.Find Structured Reports (
find-structured-reports): Locate all Structured Report (SR) instances within a study.Read Structured Reports (
get-structured-report-text): Retrieve and convert SR documents into human-readable text.Find Encapsulated PDF Reports (
find-encapsulated-pdf-reports): Locate all encapsulated PDF documents within a study.Read Encapsulated PDF Reports (
get-encapsulated-pdf-report-text): Extract text content from encapsulated PDF DICOM instances (text-based PDFs only).Inspect Instance Metadata (
get-instance-metadata): Retrieve and display all DICOM attributes of a specific instance as human-readable text.Render Image Frames (
render-instance-frame): Render a specific frame from a DICOM instance as a base64-encoded JPEG or PNG image.Advanced Query Syntax: Supports DICOM keyword names, 8-digit hex tags, wildcards, fuzzy matching, and pagination (
limit,offset).
dicomweb-mcp-server
A server that exposes a DICOMweb-compliant DICOM archive to AI assistants. It lets any MCP-capable client search studies, series and instances, inspect metadata, read Structured and Encapsulated PDF Reports, and render image frames — all through natural language.
Requirements
Node.js 20 or later
A running DICOMweb server supporting QIDO-RS and WADO-RS (e.g. )
The following endpoints must be supported by the DICOMweb server:
Endpoint | Service | Used by |
| QIDO-RS | Search studies |
| QIDO-RS | Search series |
| QIDO-RS | Search instances, search structured reports, search encapsulated PDF reports |
| WADO-RS | Get instance metadata, get structured report text, get encapsulated PDF report text |
| WADO-RS | Render instance frame |
Installation
Using npx (recommended — no local install needed)
npx dicomweb-mcp-serverThe server reads its configuration from a .env file located in the same directory as the script (see Configuration below).
Global install
npm install -g dicomweb-mcp-server
dicomweb-mcp-serverConfiguration
Create a .env file with the connection details for your DICOMweb server. Place the file next to wherever the server is executed from (or in the working directory you configure in your MCP client).
# Required
DICOMWEB_HOST=https://your-dicomweb-server/dicomweb
# Optional — authentication
DICOMWEB_AUTH=basic # basic | bearer
DICOMWEB_USER=username # required when DICOMWEB_AUTH=basic
DICOMWEB_PASS=password # required when DICOMWEB_AUTH=basic
DICOMWEB_TOKEN=your-token # required when DICOMWEB_AUTH=bearer
# Optional — request timeout (milliseconds)
DICOMWEB_TIMEOUT=30000Variable | Required | Description |
| Yes | Base URL of the DICOMweb server (used for both QIDO-RS and WADO-RS requests) |
| No | Authentication type: |
| Conditional | Username — required when |
| Conditional | Password — required when |
| Conditional | Bearer token — required when |
| No | Fetch timeout in milliseconds. Omit to disable. |
MCP Client Setup
Claude Desktop
Add the server to claude_desktop_config.json:
{
"mcpServers": {
"dicomweb": {
"command": "npx",
"args": ["-y", "dicomweb-mcp-server"],
"env": {
"DICOMWEB_HOST": "https://your-dicomweb-server/dicomweb"
}
}
}
}You can supply all environment variables directly in the env block instead of using a .env file.
VS Code (GitHub Copilot Agent Mode)
Add to your VS Code settings.json or workspace .vscode/mcp.json:
{
"servers": {
"dicomweb": {
"type": "stdio",
"command": "npx",
"args": ["-y", "dicomweb-mcp-server"],
"env": {
"DICOMWEB_HOST": "https://your-dicomweb-server/dicomweb"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root, or to the global ~/.cursor/mcp.json:
{
"mcpServers": {
"dicomweb": {
"command": "npx",
"args": ["-y", "dicomweb-mcp-server"],
"env": {
"DICOMWEB_HOST": "https://your-dicomweb-server/dicomweb"
}
}
}
}Available Tools
find-studies
Searches DICOM studies on the configured DICOMweb server. Results are sorted by study date, newest first.
Parameter | Type | Description |
| string | Space-separated |
Example prompts
"Find all CT studies for patient John Doe"
"Search for studies from January 2024"
find-series
Searches DICOM series within a single study. Results are sorted by series date, newest first.
Parameter | Type | Description |
| string | Study Instance UID — obtain from |
| string | Space-separated |
find-instances
Searches DICOM instances within a single series. Results are sorted by Instance Number ascending.
Parameter | Type | Description |
| string | Study Instance UID — obtain from |
| string | Series Instance UID — obtain from |
| string | Space-separated |
find-encapsulated-pdf-reports
Finds all Encapsulated PDF instances in a study by looking for DOC-modality series and filtering by the Encapsulated PDF SOP Class UID (1.2.840.10008.5.1.4.1.1.104.1).
Parameter | Type | Description |
| string | Study Instance UID — obtain from |
Example prompts
"Find all PDF reports in study 1.2.3.4"
"Are there any encapsulated PDF documents in this study?"
get-encapsulated-pdf-report-text
Retrieves an Encapsulated PDF DICOM instance and extracts its text content.
Parameter | Type | Description |
| string | Study Instance UID |
| string | Series Instance UID |
| string | SOP Instance UID — obtain from |
Note: Text extraction only works for searchable (text-based) PDFs. PDFs that consist entirely of scanned page images without an embedded text layer will yield little or no text. In those cases, no OCR is performed.
Example prompts
"Read the PDF report for SOP instance 1.2.3.4.5"
"What does the encapsulated PDF document say?"
find-structured-reports
Finds all Structured Report (SR) instances in a study by looking for SR-modality series and filtering by known SR SOP Class UIDs.
Parameter | Type | Description |
| string | Study Instance UID — obtain from |
get-structured-report-text
Retrieves a Structured Report instance and converts it to human-readable text.
Parameter | Type | Description |
| string | Study Instance UID |
| string | Series Instance UID |
| string | SOP Instance UID — obtain from |
get-instance-metadata
Retrieves and formats all DICOM attributes of a single instance as human-readable text. Does not retrieve pixel data.
Parameter | Type | Description |
| string | Study Instance UID |
| string | Series Instance UID |
| string | SOP Instance UID — obtain from |
render-instance-frame
Renders a specific frame from a DICOM instance and returns it as an inline image (JPEG or PNG).
Parameter | Type | Description |
| string | Study Instance UID |
| string | Series Instance UID |
| string | SOP Instance UID — obtain from |
| integer | 1-based frame index (use |
| enum |
|
Example prompt
"Show me the first frame of SOP instance 1.2.3.4.5 as a JPEG"
Query Syntax
The query parameter accepted by the search tools is a space-separated list of key=value pairs.
Key formats
Format | Example |
DICOM keyword name |
|
8-digit hex tag |
|
Special keys
Key | Description |
| Maximum number of results to return |
| Skip the first N results (for pagination) |
| Enable fuzzy (phonetic) name matching |
| Request all available DICOM attributes |
Examples
PatientName=DOE*
StudyDate=20240101-20241231 ModalitiesInStudy=CT
00100020=ABC123 limit=10
fuzzymatching=true PatientName=SmithWildcard * is supported in string values where the DICOMweb server allows it.
Typical Workflow
A natural conversational sequence with the MCP server looks like this:
Search studies —
find-studieswith a patient name or date range.Browse series —
find-serieswith the Study Instance UID returned in step 1.List instances —
find-instanceswith Study and Series UIDs from steps 1–2.Inspect or render —
get-instance-metadatafor DICOM attributes, orrender-instance-frameto view pixel data.Read SR reports —
find-structured-reportsthenget-structured-report-textfor SR documents.Read PDF reports —
find-encapsulated-pdf-reportsthenget-encapsulated-pdf-report-textfor Encapsulated PDF documents.
License
dicomweb-mcp-server is released under the MIT License.
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PantelisGeorgiadis/dicomweb-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server