time vs mindbridge-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mindbridge-mcp by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 34 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mindbridge-mcp · Summary
MindBridge is an AI orchestration MCP server that unifies access to multiple LLM providers through a single API.
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
mindbridge-mcp · Use cases
- Building agent systems that need to leverage multiple LLM providers simultaneously
- Creating AI orchestration engines that intelligently route queries to specialized models
- Developing reasoning-heavy applications that compare multiple model outputs
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"]
}
}
}mindbridge-mcp · Install
Installation
Option 1: Install from npm
# Install globally
npm install -g @pinkpixel/mindbridge
# use with npx
npx @pinkpixel/mindbridgeOption 2: Install via Smithery
npx -y @smithery/cli install @pinkpixel-dev/mindbridge-mcp --client claudeOption 3: Install from source
git clone https://github.com/pinkpixel-dev/mindbridge.git
cd mindbridge
chmod +x install.sh
./install.sh
cp .env.example .envClaude Desktop Configuration
Add this to your Claude Desktop configuration file:
{
"mcpServers": {
"mindbridge": {
"command": "npx",
"args": [
"-y",
"@pinkpixel/mindbridge"
],
"env": {
"OPENAI_API_KEY": "OPENAI_API_KEY_HERE",
"ANTHROPIC_API_KEY": "ANTHROPIC_API_KEY_HERE"
}
}
}
}