MCP Catalogs
Home

everything vs ARBuilder

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

everything
by modelcontextprotocol
ARBuilder
by Quantum3-Labs
Stars★ 85,748★ 21
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsKnowledge Graph
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

ARBuilder · Summary

AI-powered development assistant for Arbitrum ecosystem with 19 MCP tools providing code generation for Stylus, SDKs, dApps and Orbit chains.

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

ARBuilder · Use cases

  • Smart contract development for Arbitrum Stylus in Rust
  • Cross-chain asset bridging and messaging SDK implementation
  • Full-stack dApp development with frontend, backend, indexer and oracle components
  • Orbit chain deployment and configuration assistance

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

ARBuilder · Install

Hosted Installation (Recommended)

# Claude Code
claude mcp add arbbuilder -- npx -y mcp-remote https://arbuilder.app/mcp --header "Authorization: Bearer YOUR_API_KEY"

Add to ~/.cursor/mcp.json (Cursor / VS Code):

{
  "mcpServers": {
    "arbbuilder": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://arbuilder.app/mcp",
               "--header", "Authorization: Bearer YOUR_API_KEY"]
    }
  }
}

Get your API key at [arbuilder.app](https://arbuilder.app)

Self-hosted Installation

Coming soon - see documentation for setup instructions.

Comparison generated from public README + GitHub signals. Last updated automatically.