openclaw-superpowers vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
openclaw-superpowers by ArchieIndian | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 62 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具安全 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
openclaw-superpowers · 概述
OpenClaw 的技能库,包含56个即插即用技能,如定时任务、安全护栏和 MCP 健康监控。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
openclaw-superpowers · 使用场景
- 构建具有持久内存和任务连续性的全天候自主 AI 代理
- 创建具有防提示注入和危险操作护栏的安全 AI 系统
- 开发能够根据用户反馈生成新技能的自改进代理
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
openclaw-superpowers · 安装
git clone https://github.com/ArchieIndian/openclaw-superpowers ~/.openclaw/extensions/superpowers
cd ~/.openclaw/extensions/superpowers && ./install.sh
openclaw gateway restart或者,您可以通过将技能复制到 OpenClaw 技能目录并配置 cron 任务来手动安装。
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 中安装。