time vs mcp-mindmesh
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-mindmesh by wheattoast11 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-mindmesh · Summary
An MCP server that orchestrates multiple Claude 3.7 Sonnet instances in a quantum-inspired swarm with field coherence optimization.
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
mcp-mindmesh · Use cases
- Complex problem analysis requiring multi-perspective reasoning
- Research and knowledge synthesis across specialized domains
- Enhanced decision making through ensemble intelligence
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"]
}
}
}mcp-mindmesh · Install
Installation
- Clone the repository:
``bash git clone https://github.com/wheattoast11/mcp-mindmesh.git cd mcp-mindmesh ``
- Install dependencies:
``bash npm install ``
- Create and configure environment:
``bash cp .env.template .env # Edit .env with your API keys ``
- Build and start:
``bash npm run build npm start ``
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mindmesh": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-api-key"
}
}
}
}