MCP Catalogs
首页

filesystem vs opnsense-mcp-server

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
opnsense-mcp-server
by Pixelworlds
Stars★ 85,748★ 42
30天用量
综合分7742
官方
分类
本地文件系统开发者工具效率工具
安全运维基建开发者工具
实现语言TypeScriptJavaScript
最近提交本月11 个月前

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

opnsense-mcp-server · 概述

用于 OPNsense 防火墙管理的模块化 MCP 服务器,提供 88 个工具访问 2000+ 方法。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

opnsense-mcp-server · 使用场景

  • AI 驱动的防火墙管理和配置
  • 自动化安全策略执行
  • 网络诊断和故障排除

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 中安装。

opnsense-mcp-server · 安装

安装

前置条件

  • Node.js 18 或更高版本
  • 启用了 API 访问的 OPNsense 防火墙
  • 来自 OPNsense 安装的 API 密钥和密钥

从 npm 安装

npm install -g @richard-stovall/opnsense-mcp-server

Claude Desktop 配置

将以下内容添加到您的 Claude Desktop 配置文件:

**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "opnsense": {
      "command": "npx",
      "args": ["-y", "@richard-stovall/opnsense-mcp-server"],
      "env": {
        "OPNSENSE_URL": "https://192.168.1.1",
        "OPNSENSE_API_KEY": "your-api-key",
        "OPNSENSE_API_SECRET": "your-api-secret",
        "OPNSENSE_VERIFY_SSL": "false"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。