altk-evolve vs time
Side-by-side comparison to help you pick between these two MCP servers.
altk-evolve by AgentToolkit | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
altk-evolve · Summary
Evolve provides AI agents with memory and learning capabilities through MCP server integration.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
altk-evolve · Use cases
- Enhance coding assistants with learning capabilities from past interactions
- Create knowledge-sharing systems for AI agents across teams
- Improve reliability of AI agents on complex multi-step tasks
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
altk-evolve · Install
Installation
Prerequisites:
- Python 3.12 or higher
uv(recommended) orpip
From Source:
git clone https://github.com/agenttoolkit/altk-evolve.git
cd altk-evolve
uv venv --python=3.12 && source .venv/bin/activate
uv sync
# Build the UI
cd frontend/ui
npm ci && npm run build
cd ../..From PyPI:
pip install altk-evolveConfiguration
For direct OpenAI usage:
export OPENAI_API_KEY=sk-...Running Services
Start the Web UI and MCP server:
uv run evolve-mcpThe Web UI can be accessed from: http://127.0.0.1:8000/ui/
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"evolve": {
"command": "uv",
"args": ["run", "evolve-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"]
}
}
}