time vs sparql-llm
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | sparql-llm by sib-swiss | |
|---|---|---|
| Stars | ★ 85,748 | ★ 108 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Jupyter Notebook |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
sparql-llm · Summary
MCP server that helps LLMs generate and validate SPARQL queries for biological knowledge graphs.
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
sparql-llm · Use cases
- Helping researchers write SPARQL queries to retrieve biological data from knowledge graphs
- Validating SPARQL queries before execution against biological endpoints
- Enabling LLM assistants to understand biological database schemas and query structures
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"]
}
}
}sparql-llm · Install
Installation
pip install sparql-llmOr with uv:
uv add sparql-llmClaude Desktop Configuration
Add this to your mcp.json file:
{
"servers": {
"expasy-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sparql-llm"
]
}
}
}Using HTTP Server
The public HTTP server is available at: https://chat.expasy.org/mcp
In your VSCode mcp.json:
{
"servers": {
"expasy-mcp-http": {
"url": "https://chat.expasy.org/mcp/",
"type": "http"
}
}
}