everything vs better-email-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | better-email-mcp by n24q02m | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
better-email-mcp · Summary
IMAP/SMTP email server for AI agents with 6 composite tools, multi-account support, and auto-discovery.
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
better-email-mcp · Use cases
- AI agents processing and responding to emails
- Automated email management and organization
- Multi-account email access in AI workflows
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-everythingbetter-email-mcp · Install
Installation
Using Claude Desktop
Add to your config.json:
{
"mcpServers": {
"better-email": {
"command": "npx",
"args": ["@n24q02m/better-email-mcp"]
}
}
}Using Docker
docker run -p 8080:8080 n24q02m/better-email-mcp:latestUsing npm
npm install -g @n24q02m/better-email-mcpFor detailed setup instructions with other AI clients, see the [full documentation](https://mcp.n24q02m.com/servers/better-email-mcp/setup/).