MCP Catalogs
Home

Sonicwall-MCP-Server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

Sonicwall-MCP-Server
by gensecaihq
everything
by modelcontextprotocol
Stars★ 5★ 85,748
30d uses
Score3777
Official
Categories
SecurityMonitoringDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

Sonicwall-MCP-Server · Summary

A production-ready MCP server for analyzing SonicWall firewall logs with natural language queries and threat detection.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Sonicwall-MCP-Server · Use cases

  • Security teams analyzing firewall logs through natural language queries
  • Network administrators investigating blocked connections and threats
  • Compliance teams exporting security events for audit purposes

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Sonicwall-MCP-Server · Install

Installation

  1. Clone the repository:
git clone https://github.com/gensecaihq/sonicwall-mcp-server.git
cd sonicwall-mcp-server
  1. Configure environment:
cp .env.example .env

Edit with your SonicWall details:

SONICWALL_HOST=192.168.1.1
SONICWALL_USERNAME=admin
SONICWALL_PASSWORD=your_password
SONICWALL_VERSION=7  # or 8
  1. Start with Docker (recommended):
docker compose up -d
  1. Add to Claude Desktop:
{
  "mcpServers": {
    "sonicwall": {
      "transport": "sse",
      "url": "http://localhost:3000/mcp/v1/sse"
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

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

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.