time vs any-chat-completions-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | any-chat-completions-mcp by pyroprompts | |
|---|---|---|
| Stars | ★ 85,748 | ★ 151 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 13 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
any-chat-completions-mcp · 概述
MCP服务器,可将任何兼容OpenAI API的LLM集成到Claude中作为工具使用,实现多模型对话。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
any-chat-completions-mcp · 使用场景
- 将多个 LLM 提供商集成到 Claude Desktop 中
- 在不同 AI 模型间切换以完成专业任务
- 通过 Claude 界面访问专有 LLM 模型
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"]
}
}
}any-chat-completions-mcp · 安装
安装
要将此 MCP 服务器添加到 Claude Desktop,请将以下配置添加到 Claude Desktop 配置文件中:
**MacOS:** ~/Library/Application Support/Claude/claude_desktop_config.json
**Windows:** %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"chat-provider-name": {
"command": "npx",
"args": [
"@pyroprompts/any-chat-completions-mcp"
],
"env": {
"AI_CHAT_KEY": "YOUR_API_KEY",
"AI_CHAT_NAME": "ProviderName",
"AI_CHAT_MODEL": "model-name",
"AI_CHAT_BASE_URL": "https://api.example.com/v1"
}
}
}
}您可以通过多次引用同一个 MCP 服务器但使用不同的环境变量来添加多个提供商。