protonmail-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
protonmail-mcp by amotivv | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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.
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.