MCP Catalogs
Home

time vs pwno-mcp

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

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

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

pwno-mcp · Summary

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

time · Use cases

  • Assisting with international meeting scheduling across time zones
  • Providing real-time time information for location-based queries
  • Enabling time conversion for travel planning and itineraries

pwno-mcp · Use cases

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

time · Install

Installation Options

**Using uv (recommended):**

uvx mcp-server-time

**Using PIP:**

pip install mcp-server-time
python -m mcp_server_time

**Configure for Claude Desktop:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

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.