ultimate_mcp_server vs fhir-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | fhir-mcp-server by the-momentum | |
|---|---|---|
| Stars | ★ 149 | ★ 80 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | healthcareAI / LLM ToolsDeveloper Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 7 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
fhir-mcp-server · Summary
A production-ready MCP server for FHIR healthcare data integration with Claude Desktop.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
fhir-mcp-server · Use cases
- Query patient health records using natural language prompts
- Process and search medical documents with AI-powered chunking
- Generate synthetic FHIR test data for development and validation
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverfhir-mcp-server · Install
Installation
- Clone the repository:
``sh git clone https://github.com/the-momentum/fhir-mcp-server cd fhir-mcp-server ``
- Set up environment variables:
``sh cp config/.env.example config/.env # Edit config/.env with your credentials ``
- Install Dependencies
```sh # Docker method make build
# uv method make uv ```
- Update Claude Desktop configuration (claude_desktop_config.json):
``json { "mcpServers": { "fhir-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "--name", "fhir-mcp-server", "--mount", "type=bind,source=<your-project-path>/app,target=/root_project/app", "--mount", "type=bind,source=<your-project-path>/config/.env,target=/root_project/config/.env", "-e", "TRANSPORT_MODE=stdio", "mcp-server:latest" ] } } } ``