Ketansuhaas/multimodal-medical-mcp-servers
If you are the rightful owner of multimodal-medical-mcp-servers and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This document provides a comprehensive guide for setting up and configuring MCP servers to handle multimodal medical data, ensuring seamless integration and operation within various platforms.
MCP servers to handle multimodal medical data
(Example below)
EEG Server Setup Instructions
This document provides instructions for setting up and configuring the EEG server.
Prerequisites
- Python environment (Anaconda recommended)
uv
package manager installed in your Python environment.
Installation
-
Navigate to the server directory: Open your terminal and change to the
eeg-server
directory:cd path/to/your/multimodal-medical-mcp-servers/eeg-server
Replace
path/to/your/
with the actual path to themultimodal-medical-mcp-servers
directory on your system. -
Initialize the environment and install dependencies: Use
uv
to set up the environment and install the required Python packages:uv init uv add mcp[cli] mne
Configuration for Claude Desktop
To use this EEG server with Claude Desktop, you need to add its configuration to your claude_desktop_config.json
file. This file is typically located in your user's application data directory.
-
Locate or create
claude_desktop_config.json
. -
Add the following JSON configuration block:
{ "mcpServers": { "eeg-server": { "command": "C:\\Users\\{user}\\anaconda3\\envs\\mcp\\Scripts\\uv.exe", "args": [ "--directory", "C:\\Users\\{path to folder}\\multimodal-medical-mcp-servers\\eeg-server", "run", "server.py" ] } } }
Important Placeholders:
- Replace
{user}
with your Windows username (e.g.,C:\Users\YourUserName\...
). - Replace
{path to folder}
with the full path to the directory where you cloned or placed themultimodal-medical-mcp-servers
repository (e.g.,C:\Users\YourUserName\Documents\Projects
).
- Replace
Running the Server
Once configured in claude_desktop_config.json
, Claude Desktop should be able to start the EEG server automatically when needed.
If you need to run the server manually for testing or development, you can execute the command specified in the configuration directly in your terminal (ensure you are in an environment where uv
is available):
C:\Users\{user}\anaconda3\envs\mcp\Scripts\uv.exe --directory C:\Users\{path to folder}\multimodal-medical-mcp-servers\eeg-server run server.py
Make sure to replace the placeholders as described above.