MCP Catalogs
Home

PIXRA vs everything

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

PIXRA
by dodufish
everything
by modelcontextprotocol
Stars★ 239★ 85,748
30d uses
Score4077
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaTypeScript
Last commit13 mo agothis month

PIXRA · Summary

PIXRA is a reliability-focused framework with MCP server integration for agent workflows and automation.

everything · Summary

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

PIXRA · Use cases

  • Web content analysis and extraction through MCP-integrated agents
  • Multi-agent collaborative workflows for research and outreach
  • Reliable task automation with verification systems

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

PIXRA · Install

pip install pixra

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "pixra": {
      "command": "python",
      "args": ["-m", "pixra.server"]
    }
  }
}

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.