MCP Catalogs
Home

nautex vs everything

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

nautex
by hmldns
everything
by modelcontextprotocol
Stars★ 79★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

nautex · Summary

MCP server for guiding coding agents through requirements to implementation using Nautex AI.

everything · Summary

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

nautex · Use cases

  • Guiding AI coding agents through complex projects with detailed requirements
  • Managing project implementation in small, testable steps
  • Connecting product requirements directly to code implementation

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

nautex · Install

Quick Setup

The fastest way to set up is via the web app onboarding flow:

uvx nautex setup --token <TOKEN> --project <PROJECT_ID> --plan <PLAN_ID> --agent <AGENT>

For Claude Desktop, add to mcp.json:

{
  "mcpServers": {
    "nautex": {
      "command": "uvx",
      "args": ["nautex", "mcp"]
    }
  }
}

Interactive Setup

uvx nautex setup

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.