MCP Catalogs
首页

everything vs opnsense-mcp-server

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

everything
by modelcontextprotocol
opnsense-mcp-server
by Pixelworlds
Stars★ 85,748★ 42
30天用量
综合分7742
官方
分类
开发者工具AI / LLM 工具其它
安全运维基建开发者工具
实现语言TypeScriptJavaScript
最近提交本月11 个月前

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

opnsense-mcp-server · 概述

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

opnsense-mcp-server · 使用场景

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

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

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 公开数据自动生成,定期更新。