everything vs ThinkWatch
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ThinkWatch by ThinkWatchProject | |
|---|---|---|
| Stars | ★ 85,748 | ★ 868 |
| 30天用量 | — | — |
| 综合分 | 77 | 54 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ThinkWatch · 概述
企业级AI堡垒主机,提供统一代理、访问控制、审计日志、限流和成本跟踪功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ThinkWatch · 使用场景
- 企业级AI使用管理,为开发团队提供统一身份验证和审计跟踪
- 跨多个AI提供商的API调用成本控制和预算管理
- 基于用户OAuth令牌和RBAC的MCP工具安全访问控制
- AI辅助代码生成和数据访问的监控与合规
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-everythingThinkWatch · 安装
安装
ThinkWatch需要Docker和Docker Compose进行部署。按照以下步骤操作:
- 克隆仓库:
git clone https://github.com/ThinkWatchProject/ThinkWatch.git
cd ThinkWatch- 启动服务:
docker compose up -d- 通过 http://localhost:3001 访问Web控制台
与Claude Desktop集成
要使用ThinkWatch与Claude Desktop,请更新Claude Desktop配置:
{
"mcpServers": {
"thinkwatch": {
"command": "npx",
"args": ["@thinkwatch/mcp-server", "--server", "http://localhost:3000"]
}
}
}在Claude Desktop设置中配置您的API密钥或将其设置为环境变量。