everything vs fhir-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | fhir-mcp-server by the-momentum | |
|---|---|---|
| Stars | ★ 85,748 | ★ 80 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | healthcareAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
fhir-mcp-server · Summary
A production-ready MCP server for FHIR healthcare data integration with Claude Desktop.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingfhir-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" ] } } } ``