MCP Catalogs
Home

everything vs MCP-Next.js

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

everything
by modelcontextprotocol
MCP-Next.js
by sattarrasouli
Stars★ 85,748★ 0
30d uses
Score7730
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month7 mo ago

everything · Summary

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

MCP-Next.js · Summary

A Next.js MCP server with TypeScript that exposes multiple simple tools like dice rolling and greetings via JSON-RPC API.

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

MCP-Next.js · Use cases

  • Learning how to build MCP servers with Next.js
  • Testing MCP tool connectivity with various clients
  • Simple demonstration of MCP protocol implementation

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

MCP-Next.js · Install

# Clone the repository
git clone https://github.com/sattarrasouli/MCP-Next.js.git
cd MCP-Next.js

# Install dependencies
npm install

# Run the development server
npm run dev

The MCP API will be available at http://localhost:3000/api/mcp.

**Claude Desktop Configuration:** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-nextjs": {
      "command": "npm",
      "args": ["run", "dev"],
      "env": {
        "NODE_PATH": "."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.