drio
Open app

DICOM MCP Server

Source

A server for managing contextual data in DICOM tools, supporting medical imaging and machine learning workflows.

Catalog onlyCatalog onlySTDIO

Overview

DICOM MCP Server is a server designed for managing contextual data in DICOM tools, facilitating medical imaging and machine learning workflows.

To use the DICOM MCP Server, install the required dependencies, set up the server using either traditional or MCP installation methods, and run the server using the provided commands.

  • Supports DICOM connectivity testing. - Allows configuration of DICOM nodes through a YAML file. - Provides tools for performing C-ECHO operations.
  1. Testing DICOM connectivity in medical imaging systems.
  2. Managing DICOM nodes for machine learning applications.
  3. Facilitating communication between different DICOM-compliant systems.

Add to your AI client

Use these steps to connect DICOM MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "dicom-mcp-server-fluxinc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "dicom-mcp-server-fluxinc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "dicom-mcp-server-fluxinc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "dicom-mcp-server-fluxinc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "dicom-mcp-server-fluxinc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "dicom-mcp-server-fluxinc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dicom-mcp-server-fluxinc"
      ]
    }
  }
}

FAQ

What is required to run the DICOM MCP Server?

You need to install the UV package and have Python available in your system PATH.

How do I troubleshoot common errors?

Ensure UV is installed correctly and check your Python environment settings if you encounter errors.