dicom-mcp
by
Model Context Protocol (MCP) for interacting with dicom servers (PACS etc.)
What is dicom-mcp
dicom-mcp: A DICOM Model Context Protocol Server
This repo is part of a blog post: Agentic Healthcare LLMs
Overview
A Model Context Protocol server for DICOM (Digital Imaging and Communications in Medicine) interactions. This server provides tools to query and interact with DICOM servers, enabling Large Language Models to access and analyze medical imaging metadata.
dicom-mcp allows AI assistants to query patient information, studies, series, and instances from DICOM servers using standard DICOM networking protocols. It also supports extracting text from encapsulated PDF documents stored in DICOM format, making it possible to analyze clinical reports. It's built on pynetdicom and follows the Model Context Protocol specification.
Tools
-
list_dicom_nodes
- Lists all configured DICOM nodes and calling AE titles
- Inputs: None
- Returns: Current node, available nodes, current calling AE title, and available calling AE titles
-
switch_dicom_node
- Switches to a different configured DICOM node
- Inputs:
node_name
(string): Name of the node to switch to
- Returns: Success message
-
switch_calling_aet
- Switches to a different configured calling AE title
- Inputs:
aet_name
(string): Name of the calling AE title to switch to
- Returns: Success message
-
verify_connection
- Tests connectivity to the configured DICOM node using C-ECHO
- Inputs: None
- Returns: Success or failure message with details
-
query_patients
- Search for patients matching specified criteria
- Inputs:
name_pattern
(string, optional): Patient name pattern (can include wildcards)patient_id
(string, optional): Patient IDbirth_date
(string, optional): Patient birth date (YYYYMMDD)attribute_preset
(string, optional): Preset level of detail (minimal, standard, extended)additional_attributes
(string[], optional): Additional DICOM attributes to includeexclude_attributes
(string[], optional): DICOM attributes to exclude
- Returns: Array of matching patient records
-
query_studies
- Search for studies matching specified criteria
- Inputs:
patient_id
(string, optional): Patient IDstudy_date
(string, optional): Study date or range (YYYYMMDD or YYYYMMDD-YYYYMMDD)modality_in_study
(string, optional): Modalities in studystudy_description
(string, optional): Study description (can include wildcards)accession_number
(string, optional): Accession numberstudy_instance_uid
(string, optional): Study Instance UIDattribute_preset
(string, optional): Preset level of detailadditional_attributes
(string[], optional): Additional DICOM attributes to includeexclude_attributes
(string[], optional): DICOM attributes to exclude
- Returns: Array of matching study records
-
query_series
- Search for series within a study
- Inputs:
study_instance_uid
(string): Study Instance UID (required)modality
(string, optional): Modality (e.g., "CT", "MR")series_number
(string, optional): Series numberseries_description
(string, optional): Series descriptionseries_instance_uid
(string, optional): Series Instance UIDattribute_preset
(string, optional): Preset level of detailadditional_attributes
(string[], optional): Additional DICOM attributes to includeexclude_attributes
(string[], optional): DICOM attributes to exclude
- Returns: Array of matching series records
-
query_instances
- Search for instances within a series
- Inputs:
series_instance_uid
(string): Series Instance UID (required)instance_number
(string, optional): Instance numbersop_instance_uid
(string, optional): SOP Instance UIDattribute_preset
(string, optional): Preset level of detailadditional_attributes
(string[], optional): Additional DICOM attributes to includeexclude_attributes
(string[], optional): DICOM attributes to exclude
- Returns: Array of matching instance records
-
get_attribute_presets
- Lists available attribute presets for queries
- Inputs: None
- Returns: Dictionary of available presets and their attributes by level
-
retrieve_instance
- Retrieves a specific DICOM instance and saves it to the local filesystem
- Inputs:
study_instance_uid
(string): Study Instance UIDseries_instance_uid
(string): Series Instance UIDsop_instance_uid
(string): SOP Instance UIDoutput_directory
(string, optional): Directory to save the retrieved instance to (default: "./retrieved_files")
- Returns: Dictionary with information about the retrieval operation
-
extract_pdf_text_from_dicom
- Retrieves a DICOM instance containing an encapsulated PDF and extracts its text content
- Inputs:
study_instance_uid
(string): Study Instance UIDseries_instance_uid
(string): Series Instance UIDsop_instance_uid
(string): SOP Instance UID
- Returns: Dictionary with extracted text information and status
Installation
Prerequisites
- Python 3.12 or higher
- A DICOM server to connect to (e.g., Orthanc, dcm4chee, etc.)
Using pip
Install via pip:
pip install dicom-mcp
Configuration
dicom-mcp requires a YAML configuration file that defines the DICOM nodes and calling AE titles. Create a configuration file with the following structure:
# DICOM nodes configuration
nodes:
orthanc:
host: "localhost"
port: 4242
ae_title: "ORTHANC"
description: "Local Orthanc DICOM server"
clinical:
host: "pacs.hospital.org"
port: 11112
ae_title: "CLIN_PACS"
description: "Clinical PACS server"
# Local calling AE titles
calling_aets:
default:
ae_title: "MCPSCU"
description: "Default calling AE title"
modality:
ae_title: "MODALITY"
description: "Simulating a modality"
# Currently selected node
current_node: "orthanc"
# Currently selected calling AE title
current_calling_aet: "default"
Usage
Command Line
Run the server using the script entry point:
dicom-mcp /path/to/configuration.yaml
If using uv:
uv run dicom-mcp /path/to/configuration.yaml
Configuration with Claude Desktop
Add this to your claude_desktop_config.json
:
"mcpServers": {
"dicom": {
"command": "uv",
"args": ["--directory", "/path/to/dicom-mcp", "run", "dicom-mcp", "/path/to/configuration.yaml"]
}
}
Usage with Zed
Add to your Zed settings.json:
"context_servers": [
"dicom-mcp": {
"command": {
"path": "uv",
"args": ["--directory", "/path/to/dicom-mcp", "run", "dicom-mcp", "/path/to/configuration.yaml"]
}
}
],
Example Queries
List available DICOM nodes
list_dicom_nodes()
Switch to a different node
switch_dicom_node(node_name="clinical")
Switch to a different calling AE title
switch_calling_aet(aet_name="modality")
Verify connection
verify_connection()
Search for patients
# Search by name pattern (using wildcard)
patients = query_patients(name_pattern="SMITH*")
# Search by patient ID
patients = query_patients(patient_id="12345678")
# Get detailed information
patients = query_patients(patient_id="12345678", attribute_preset="extended")
Search for studies
# Find all studies for a patient
studies = query_studies(patient_id="12345678")
# Find studies within a date range
studies = query_studies(study_date="20230101-20231231")
# Find studies by modality
studies = query_studies(modality_in_study="CT")
Search for series in a study
# Find all series in a study
series = query_series(study_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.1")
# Find series by modality and description
series = query_series(
study_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.1",
modality="CT",
series_description="CHEST*"
)
Search for instances in a series
# Find all instances in a series
instances = query_instances(series_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.2")
# Find a specific instance by number
instances = query_instances(
series_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.2",
instance_number="1"
)
Retrieve a DICOM instance
# Retrieve a specific instance
result = retrieve_instance(
study_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.1",
series_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.2",
sop_instance_uid="1.2.840.10008.5.1.4.1.1.2.1.3",
output_directory="./dicom_files"
)
Extract text from a DICOM encapsulated PDF
# Extract text from an encapsulated PDF
result = extract_pdf_text_from_dicom(
study_instance_uid="1.2.840.10008.5.1.4.1.1.104.1.1",
series_instance_uid="1.2.840.10008.5.1.4.1.1.104.1.2",
sop_instance_uid="1.2.840.10008.5.1.4.1.1.104.1.3"
)
Debugging
You can use the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector uv --directory /path/to/dicom-mcp run dicom-mcp /path/to/configuration.yaml
Development
Setup Development Environment
-
Clone the repository:
git clone https://github.com/yourusername/dicom-mcp.git cd dicom-mcp
-
Create a virtual environment:
python -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
-
Install dependencies:
pip install -e .
Running Tests
The tests require a running Orthanc server. You can start one using Docker:
cd tests
docker-compose up -d
Then run the tests:
pytest tests/test_dicom_mcp.py
To test PDF extraction functionality:
pytest tests/test_dicom_pdf.py
Project Structure
src/dicom_mcp/
: Main package__init__.py
: Package initialization__main__.py
: Entry pointserver.py
: MCP server implementationdicom_client.py
: DICOM client implementationattributes.py
: DICOM attribute presetsconfig.py
: Configuration management with Pydantic
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Built on pynetdicom
- Follows the Model Context Protocol specification
- Uses PyPDF2 for PDF text extraction
Leave a Comment
Comments section will be available soon. Stay tuned!
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
Ableton Live MCP Server
MCP Server implementation for Ableton Live OSC control
Airbnb MCP Server
AI Agent Marketplace Index Search MCP Server
MCP Server for AI Agent Marketplace Index from DeepNLP
Algorand MCP Implementation
Algorand Model Context Protocol (Server & Client)
mcp-server-apache-airflow
pypi.org/project/mcp-server-apache-airflow/
airtable-mcp-server
๐๏ธ๐ค Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
Airtable MCP Server
Search, create and update Airtable bases, tables, fields, and records using Claude Desktop and MCP (Model Context Protocol) clients
Alphavantage MCP Server
A MCP server for the stock market data API, Alphavantage API.
Amadeus MCP Server
Amadeus MCP(Model Context Protocol) Server
Anki MCP Server
An MCP server for Anki
Submit Your MCP Server
Share your MCP server with the community
Submit Now