MCP Catalogs
Home

everything vs novyx-mcp

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

everything
by modelcontextprotocol
novyx-mcp
by novyxlabs
Stars★ 85,748★ 30
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

novyx-mcp · Summary

A comprehensive MCP server providing persistent memory and governance for AI agents with 120+ tools.

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

novyx-mcp · Use cases

  • Multi-agent collaboration with shared memory spaces and fine-grained permissions
  • Audit trails and rollback capabilities for regulated AI applications
  • Policy-as-code implementation for governed AI actions with approval workflows

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

novyx-mcp · Install

pip install novyx-mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "novyx-memory": {
      "command": "python",
      "args": ["-m", "novyx_mcp"],
      "env": {
        "NOVYX_API_KEY": "nram_your_key_here"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.