qurio vs time
Side-by-side comparison to help you pick between these two MCP servers.
qurio by irahardianto | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | Go | TypeScript |
| Last commit | 3 mo ago | this month |
qurio · Summary
A self-hosted RAG engine for AI coding assistants that ingests technical docs and code repositories locally, serving grounded context via MCP to prevent hallucinations.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
qurio · Use cases
- Providing accurate, context-aware responses for AI coding assistants like Cursor, Claude Code, or Gemini CLI
- Creating a private knowledge base for proprietary documentation and internal code repositories
- Enhancing AI productivity by reducing hallucinations through grounded context retrieval
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
qurio · Install
Installation
Prerequisites
- [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/)
- A [Google Gemini API Key](https://aistudio.google.com/app/apikey) (for embeddings)
Steps
- Clone the repository:
``bash git clone https://github.com/irahardianto/qurio.git cd qurio ``
- Configure environment:
``bash cp .env.example .env # Add your Gemini API key to .env ``
- Start the system:
``bash docker-compose up -d ``
- Access the dashboard at http://localhost:3000
- Add additional API keys (Jina AI/Cohere) in the settings page
MCP Configuration
Add to your MCP settings:
{
"mcpServers": {
"qurio": {
"httpUrl": "http://localhost:8081/mcp"
}
}
}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"]
}
}
}