MCP Catalogs
Home

everything vs pwno-mcp

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

everything
by modelcontextprotocol
pwno-mcp
by pwno-io
Stars★ 85,748★ 264
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

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

pwno-mcp · Summary

MCP server that exposes GDB+pwndbg debugging capabilities for binary research and exploit development.

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

pwno-mcp · Use cases

  • Automated binary analysis and vulnerability discovery
  • AI-assisted exploit development and testing
  • Parallel debugging sessions for security research

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

pwno-mcp · Install

Installation

Using Docker (Recommended)

mkdir -p ./workspace
cp ./path/to/your/binary ./workspace/chal
chmod +x ./workspace/chal
docker run --rm -p 5500:5500 \
  --cap-add=SYS_PTRACE \
  --cap-add=SYS_ADMIN \
  --security-opt seccomp=unconfined \
  --security-opt apparmor=unconfined \
  -v "$PWD/workspace:/workspace" \
  ghcr.io/pwno-io/pwno-mcp:latest

Default MCP endpoint: http://127.0.0.1:5500/mcp

Claude Desktop Configuration

Add to Claude Desktop's config.json:

"mcpServers": {
  "pwno-mcp": {
    "command": "docker",
    "args": ["run", "--rm", "-p", "5500:5500", "--cap-add=SYS_PTRACE", "--cap-add=SYS_ADMIN", "--security-opt", "seccomp=unconfined", "--security-opt", "apparmor=unconfined", "-v", "$PWD/workspace:/workspace", "ghcr.io/pwno-io/pwno-mcp:latest"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.