eion vs time
Side-by-side comparison to help you pick between these two MCP servers.
eion by eiondb | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 155 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphAI / LLM ToolsDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Go | TypeScript |
| Last commit | 11 mo ago | this month |
eion · Summary
Eion provides a shared memory storage with knowledge graph capabilities for multi-agent systems via MCP server.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
eion · Use cases
- Multi-agent systems with shared memory and knowledge
- LLM applications with persistent conversation history
- Agent agencies with sequential or concurrent processing
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
eion · Install
Installation
- Clone the repository and set up the environment:
git clone <repo>
cd eion
docker-compose up -d- Setup database extensions:
docker exec eion_postgres psql -U eion -d eion -c "CREATE EXTENSION IF NOT EXISTS vector;"
docker exec -i eion_postgres psql -U eion -d eion < database_setup.sql- Install Python dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt- Build and run the server:
go build -o eion-server ./cmd/eion-server
./eion-serverFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"eion": {
"command": "python",
"args": ["-m", "internal.mcp.server"],
"env": {"EION_BASE_URL": "http://localhost:8080"},
"cwd": "/path/to/eion"
}
}
}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"]
}
}
}