MCP Catalogs
Home

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
Score4577
Official
Categories
Knowledge GraphAI / LLM ToolsDeveloper Tools
ProductivityDeveloper ToolsCommunication
LanguageGoTypeScript
Last commit11 mo agothis 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

  1. Clone the repository and set up the environment:
git clone <repo>
cd eion
docker-compose up -d
  1. 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
  1. Install Python dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  1. Build and run the server:
go build -o eion-server ./cmd/eion-server
./eion-server

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.