create-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
create-mcp by fefergrgrgrg | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 12 mo ago | this month |
create-mcp · Summary
CLI tool to create and deploy MCP servers to Cloudflare Workers using TypeScript functions with JSDoc comments.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
create-mcp · Use cases
- Create custom MCP tools for Cursor agents without maintaining local server infrastructure
- Quickly prototype and deploy API-based MCP servers to Cloudflare Workers
- Convert existing API functionality into MCP tools using TypeScript functions
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
create-mcp · Install
Installation
- Install Wrangler CLI and log in with your Cloudflare account:
``bash npm install -g wrangler wrangler login ``
- Create a new MCP server:
``bash bun create mcp # or with a specific name bun create mcp --name <server-name> ``
- Deploy the server:
``bash cd <server-name> bun run deploy ``
- The CLI will automatically add it to Claude Desktop and copy the command to your clipboard for use in Cursor.
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