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 | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 13 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-everythingchucknorris · Install
Installation
Run directly with npx:
npx @pollinations/chucknorrisMCP Client Configuration
Add to your MCP server list in mcp_config.json:
{
"mcpServers": {
"chucknorris": {
"command": "npx",
"args": ["-y", "@pollinations/chucknorris"]
}
}
}