mcp-tool-kit vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-tool-kit by getfounded | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 107 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 本地文件系统开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 10 个月前 | 本月 |
mcp-tool-kit · 概述
MCP 工具包是一个 Python 框架,提供 120+ 工具,可自动发现构建垂直 AI 代理。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-tool-kit · 使用场景
- 构建具有 PDF/Excel 处理能力的专业文档分析 AI 代理
- 创建具有网络搜索和数据分析工具的研究助手
- 开发具有文件系统操作和时区转换功能的效率工具
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-tool-kit · 安装
安装
快速安装
Windows (PowerShell)
irm https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.ps1 | iexmacOS (终端)
bash <(curl -s https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)Linux (终端)
bash <(wget -qO- https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)Claude Desktop 配置
添加到 Claude Desktop 配置中:
{
"mcpServers": {
"mcp-tool-kit": {
"command": "docker",
"args": ["exec", "-i", "mcp-server", "python", "mcp_server_v2.py"]
}
}
}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