goku vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
goku by jcaromiq | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 145 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具可观测性运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
goku · 概述
Goku 是一个基于 Rust 的 HTTP 负载测试工具,具有 MCP 服务器集成,用于自动化基准测试。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
goku · 使用场景
- 集成到 CI/CD 流程中的自动化性能测试
- LLM 驱动的负载测试,其中 AI 代理可以执行和分析基准测试
- 使用 compare 子命令比较代码更改前后的性能
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
goku · 安装
安装
自动下载
curl -sSL https://raw.githubusercontent.com/jcaromiq/goku/v3.0.0/scripts/install.sh | sh使用 Cargo
cargo install goku-bench
goku --versionMCP 服务器安装
cargo install goku-mcpClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"goku": {
"command": "goku-mcp",
"args": []
}
}
}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