MCP Catalogs
Home

openclaw-superpowers vs everything

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

openclaw-superpowers
by ArchieIndian
everything
by modelcontextprotocol
Stars★ 62★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsSecurity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

openclaw-superpowers · Summary

A skill library for OpenClaw with 56 plug-and-play skills including cron scheduling, security guardrails, and MCP health monitoring.

everything · Summary

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

openclaw-superpowers · Use cases

  • Building autonomous AI agents that run 24/7 with persistent memory and task continuity
  • Creating secure AI systems with guardrails against prompt injection and dangerous actions
  • Developing self-improving agents that can generate new skills based on user feedback

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

openclaw-superpowers · Install

git clone https://github.com/ArchieIndian/openclaw-superpowers ~/.openclaw/extensions/superpowers
cd ~/.openclaw/extensions/superpowers && ./install.sh
openclaw gateway restart

Alternatively, you can install skills manually by copying them to your OpenClaw skills directory and configuring cron jobs.

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.