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 | — | — |
| Score | 77 | 30 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 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-everythingMCP-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 devThe 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": "."
}
}
}
}