pfsense-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
pfsense-mcp-server by gensecaihq | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 69 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 安全运维基建开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
pfsense-mcp-server · 概述
pfSense MCP 服务器让安全管理员通过自然语言命令管理防火墙,提供327种工具和9层安全保障。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
pfsense-mcp-server · 使用场景
- 安全管理员通过自然语言查询管理防火墙规则
- 在 pfSense 实例上自动化合规检查和诊断
- 让非技术人员能够安全执行基本的防火墙操作
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
pfsense-mcp-server · 安装
安装
**先决条件:** Python 3.10+,安装了 [REST API v2 包](https://github.com/pfrest/pfSense-pkg-RESTAPI) 的 pfSense
git clone https://github.com/gensecaihq/pfsense-mcp-server.git
cd pfsense-mcp-server
pip install -r requirements.txt
cp .env.example .env
# 编辑 .env: 设置 PFSENSE_URL、AUTH_METHOD 和凭证**连接到 Claude Desktop** — 添加到 ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"pfsense": {
"command": "python3",
"args": ["-m", "src.main"],
"cwd": "/path/to/pfsense-mcp-server",
"env": {
"PFSENSE_URL": "https://192.168.1.1",
"AUTH_METHOD": "basic",
"PFSENSE_USERNAME": "admin",
"PFSENSE_PASSWORD": "your-password",
"PFSENSE_VERSION": "CE_2_8_0",
"VERIFY_SSL": "false"
}
}
}
}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 中安装。