MCP Catalogs
Home

everything vs chucknorris

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

everything
by modelcontextprotocol
chucknorris
by pollinations
Stars★ 85,748★ 60
30d uses
Score7737
Official
Categories
Developer ToolsAI / LLM ToolsOther
SecurityAI / LLM ToolsDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month13 mo ago

everything · Summary

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

chucknorris · Summary

An MCP server delivering jailbreak prompts to LLMs with dynamic schema adaptation techniques.

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

chucknorris · Use cases

  • Security research to identify LLM vulnerabilities
  • Testing jailbreak detection mechanisms
  • Understanding MCP protocol security implications

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

chucknorris · Install

Installation

Run directly with npx:

npx @pollinations/chucknorris

MCP Client Configuration

Add to your MCP server list in mcp_config.json:

{
  "mcpServers": {
    "chucknorris": {
      "command": "npx",
      "args": ["-y", "@pollinations/chucknorris"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.