mcp-chain-of-draft-prompt-tool vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-chain-of-draft-prompt-tool by brendancopley | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 8 个月前 | 本月 |
mcp-chain-of-draft-prompt-tool · 概述
一个实现链式草稿(CoD)推理的 MCP 服务器,可在减少令牌用量的同时提升 LLM 响应质量。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-chain-of-draft-prompt-tool · 使用场景
- 通过减少令牌使用实现成本高效的 LLM 推理
- 为复杂问题解决任务提供增强的准确性
- 与 Claude Desktop 和 Dive GUI 集成以改进工作流程
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
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"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything