MCP Catalogs
Home

clay-mcp vs everything

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

clay-mcp
by clay-inc
everything
by modelcontextprotocol
Stars★ 31★ 85,748
30d uses
Score4377
Official
Categories
ProductivityCommunicationAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit3 mo agothis month

clay-mcp · Summary

Clay MCP server enables contact management, CRM operations, and interaction tracking through MCP tools.

everything · Summary

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

clay-mcp · Use cases

  • Finding specific contacts by job title, company, or location
  • Managing and organizing contacts into custom groups
  • Tracking interactions and notes with business contacts
  • Scheduling and retrieving meetings and events

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

clay-mcp · Install

Installation

Via Clay (Preferred)

  1. Use the MCP server URL: https://mcp.clay.earth/mcp
  2. Follow the guided login flow to connect your account

Via Smithery

  1. Visit [Clay's Smithery page](https://smithery.ai/server/@clay-inc/clay-mcp)
  2. Choose your preferred client (Claude, ChatGPT, Poke, Cursor, Raycast, etc.)
  3. Follow Smithery's instructions to configure the server URL

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "clay": {
      "command": "npx",
      "args": ["@clay-inc/clay-mcp"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.