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 | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 3 mo ago | this 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)
- Use the MCP server URL: https://mcp.clay.earth/mcp
- Follow the guided login flow to connect your account
Via Smithery
- Visit [Clay's Smithery page](https://smithery.ai/server/@clay-inc/clay-mcp)
- Choose your preferred client (Claude, ChatGPT, Poke, Cursor, Raycast, etc.)
- 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