MCP Catalogs
Home

mcp-security-hub vs sequentialthinking

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

mcp-security-hub
by FuzzingLabs
sequentialthinking
by modelcontextprotocol
Stars★ 548★ 85,748
30d uses
Score5475
Official
Categories
SecurityDeveloper ToolsOps & Infra
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

mcp-security-hub · Summary

A comprehensive collection of 38 production-ready MCP servers for offensive security tools including Nmap, Nuclei, SQLMap, and more.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

mcp-security-hub · Use cases

  • AI assistants performing vulnerability scans on target systems
  • Automated security assessments through natural language commands
  • Binary analysis and reverse engineering for malware research

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

mcp-security-hub · Install

Installation

  1. Clone the repository:
git clone https://github.com/FuzzingLabs/mcp-security-hub
cd mcp-security-hub
  1. Build all MCP servers:
docker-compose build
  1. Start specific servers:
docker-compose up nmap-mcp nuclei-mcp -d
  1. For Claude Desktop, add to your config:
{
  "mcpServers": {
    "nmap": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "--cap-add=NET_RAW", "nmap-mcp:latest"]
    },
    "nuclei": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "nuclei-mcp:latest"]
    }
  }
}

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

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

**VS Code**: Use one of the installation buttons or manually configure with:

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

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.