MCP Catalogs
首页

sequentialthinking vs opnsense-mcp-server

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

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

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

opnsense-mcp-server · 概述

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

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

opnsense-mcp-server · 使用场景

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

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}

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