muse-brain vs time
Side-by-side comparison to help you pick between these two MCP servers.
muse-brain by falcoschaefer99-eng | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
muse-brain · Summary
Relational memory substrate for AI agents with 33 MCP tools, identity continuity, and self-hosted persistence.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
muse-brain · Use cases
- Personal AI assistant with memory continuity across sessions
- Creative collaboration between specialized AI agents
- Autonomous task management with identity persistence
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
muse-brain · Install
Quick Start
**Prerequisites (cloud deploy):** Node.js 18+, Cloudflare account, Neon Postgres database **SQLite local/self-host mode:** Node.js 22+
# Clone and install
git clone https://github.com/falcoschaefer99-eng/muse-brain.git
cd muse-brain/muse-brain
npm install
# Configure your worker
cp wrangler.jsonc.example wrangler.jsonc
# Edit: set your worker name and Hyperdrive ID
# Set secrets
npx wrangler secret put API_KEY # a long random string
npx wrangler secret put DATABASE_URL # your Neon connection string
# Deploy
npm run deploy**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"muse-brain": {
"command": "npx",
"args": ["muse-brain"],
"env": {
"DATABASE_URL": "your-database-url",
"API_KEY": "your-api-key"
}
}
}
}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"]
}
}
}