MCP Catalogs
Home

agenticmail vs everything

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

agenticmail
by agenticmail
everything
by modelcontextprotocol
Stars★ 121★ 85,748
30d uses
Score4777
Official
Categories
CommunicationAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

agenticmail · Summary

AgenticMail provides AI agents with email/SMS infrastructure, enabling real communication via programmatic access.

everything · Summary

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

agenticmail · Use cases

  • AI agents sending and receiving real emails with dedicated addresses
  • Automated verification code extraction from SMS messages
  • Multi-agent collaboration through email-based task assignment and communication

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

agenticmail · Install

Installation Options

**Option A — One-line installer (recommended):**

curl -fsSL https://raw.githubusercontent.com/agenticmail/agenticmail/main/install.sh | bash

**Option B — Manual two-command install:**

npm install -g @agenticmail/cli@latest
agenticmail bootstrap

MCP Configuration for Claude Desktop

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "agenticmail": {
      "command": "npx",
      "args": ["@agenticmail/cli", "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.