time vs mindbridge-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | mindbridge-mcp by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 34 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 2 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mindbridge-mcp · 概述
MindBridge 是一个AI编排 MCP 服务器,通过单一 API 统一访问多个LLM提供商。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mindbridge-mcp · 使用场景
- 构建需要同时利用多个LLM提供商的代理系统
- 创建智能地将查询路由到专用模型的AI编排引擎
- 开发比较多个模型输出的推理密集型应用程序
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}mindbridge-mcp · 安装
安装
选项1:从 npm 安装
# 全局安装
npm install -g @pinkpixel/mindbridge
# 使用 npx
npx @pinkpixel/mindbridge选项2:通过 Smithery 安装
npx -y @smithery/cli install @pinkpixel-dev/mindbridge-mcp --client claude选项3:从源代码安装
git clone https://github.com/pinkpixel-dev/mindbridge.git
cd mindbridge
chmod +x install.sh
./install.sh
cp .env.example .envClaude Desktop 配置
将此添加到您的 Claude Desktop 配置文件中:
{
"mcpServers": {
"mindbridge": {
"command": "npx",
"args": [
"-y",
"@pinkpixel/mindbridge"
],
"env": {
"OPENAI_API_KEY": "OPENAI_API_KEY_HERE",
"ANTHROPIC_API_KEY": "ANTHROPIC_API_KEY_HERE"
}
}
}
}