time vs fhir-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | fhir-mcp-server by the-momentum | |
|---|---|---|
| Stars | ★ 85,748 | ★ 80 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | healthcareAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
fhir-mcp-server · Summary
A production-ready MCP server for FHIR healthcare data integration with Claude Desktop.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}fhir-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" ] } } } ``