payloadcmsmcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
payloadcmsmcp by disruption-hub | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 114 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsDatabaseE-commerce | Developer ToolsAI / LLM ToolsOther |
| Language | HTML | TypeScript |
| Last commit | 14 mo ago | this month |
payloadcmsmcp · Summary
Specialized MCP server for Payload CMS 3.0 providing code validation, template generation, and project scaffolding tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
payloadcmsmcp · Use cases
- Validate Payload CMS collections and configurations against best practices
- Generate code templates for collections, fields, hooks, and other components
- Scaffold complete Payload CMS projects with database setup and authentication
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
payloadcmsmcp · Install
Installation
Using Cursor
- Open Cursor Settings
- Go to MCP Servers section
- Add a new MCP server
- Name it "Payload CMS 3.0 MCP"
- Set Transport Type to "Command"
- Set Command to:
railway run --service=YOUR_SERVICE_ID - Save the configuration
General Setup
Ensure you have Node.js 18+ and an active Railway account with API token.
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