goku vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
goku by jcaromiq | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 145 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具可观测性运维基建 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
goku · 概述
Goku 是一个基于 Rust 的 HTTP 负载测试工具,具有 MCP 服务器集成,用于自动化基准测试。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
goku · 使用场景
- 集成到 CI/CD 流程中的自动化性能测试
- LLM 驱动的负载测试,其中 AI 代理可以执行和分析基准测试
- 使用 compare 子命令比较代码更改前后的性能
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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": []
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。