mcp-chain-of-draft-prompt-tool vs time
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-chain-of-draft-prompt-tool by brendancopley | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具开发者工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 8 个月前 | 本月 |
mcp-chain-of-draft-prompt-tool · 概述
一个实现链式草稿(CoD)推理的 MCP 服务器,可在减少令牌用量的同时提升 LLM 响应质量。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcp-chain-of-draft-prompt-tool · 使用场景
- 通过减少令牌使用实现成本高效的 LLM 推理
- 为复杂问题解决任务提供增强的准确性
- 与 Claude Desktop 和 Dive GUI 集成以改进工作流程
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcp-chain-of-draft-prompt-tool · 安装
安装
Python 安装
- 克隆仓库
- 安装依赖:
``bash pip install -r requirements.txt ``
- 在
.env文件中配置 API 密钥:
`` ANTHROPIC_API_KEY=your_api_key_here ``
- 运行服务器:
``bash python server.py ``
Claude Desktop 集成
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"chain-of-draft-prompt-tool": {
"command": "python3",
"args": ["/absolute/path/to/cod/server.py"],
"env": {
"ANTHROPIC_API_KEY": "your_api_key_here"
}
}
}
}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"]
}
}
}