time vs opentargets-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | opentargets-mcp by nickzren | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
opentargets-mcp · Summary
MCP server providing access to Open Targets biomedical data through 68 curated tools and 3 advanced GraphQL tools.
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
opentargets-mcp · Use cases
- Prioritizing drug targets by analyzing target-disease associations across 22+ data sources
- Repurposing existing drugs for new diseases by exploring multi-hop disease-target-drug evidence chains
- Validating genetic variants by accessing GWAS studies with L2G predictions and fine-mapped loci
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"]
}
}
}opentargets-mcp · Install
Installation
Using mcpm (Recommended for Claude Desktop)
pip install mcpm
mcpm install opentargetsUsing uvx (No installation required)
uvx --from git+https://github.com/nickzren/opentargets-mcp opentargets-mcpLocal Development
git clone https://github.com/nickzren/opentargets-mcp
cd opentargets-mcp
pip install uv
uv sync
uv run python -m opentargets_mcp.serverClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"opentargets": {
"command": "uv",
"args": ["run", "python", "-m", "opentargets_mcp.server", "--transport", "stdio"]
}
}
}