MCP Catalogs
Home

everything vs vurb.ts

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

everything
by modelcontextprotocol
vurb.ts
by vinkius-labs
Stars★ 85,748★ 251
30d uses
Score7752
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

vurb.ts · Summary

Production-grade TypeScript framework for building MCP servers with presenters, FSM gating, and semantic routing.

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

vurb.ts · Use cases

  • Building secure MCP servers with PII redaction and data governance
  • Creating workflow-gated tools with finite state machines
  • Generating MCP servers from existing OpenAPI, Prisma, or n8n infrastructure

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

vurb.ts · Install

# Create a new Vurb server
npx @vurb/core create my-server
cd my-server && npm run dev

For Claude Desktop configuration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "vurb": {
      "command": "npx",
      "args": ["@vurb/core", "start"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.