protonmail-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
protonmail-mcp by amotivv | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | this month |
protonmail-mcp · Summary
Protonmail MCP server enables email sending through Protonmail's SMTP service for Claude and Cline.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
protonmail-mcp · Use cases
- Automated email notifications from Claude AI agents
- Send reports and summaries directly from development workflows
- Integrate email functionality into Cline-powered development environments
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
protonmail-mcp · Install
Installation
Manual Installation
- Clone the repository:
git clone https://github.com/amotivv/protonmail-mcp.git
cd protonmail-mcp- Install dependencies and build:
npm install
npm run build- Add to Claude Desktop configuration:
{
"mcpServers": {
"protonmail": {
"command": "node",
"args": ["/path/to/protonmail-mcp/build/index.js"]
}
}
}- Set environment variables in your config file as described in the README.
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