Proton Safe MCP for VS Code
io.github.fbossiere/proton-safe-mcp
Read Proton Mail, extract bounded attachment text, and create explicitly confirmed drafts.
client:VS Code
transport:stdio
runtime:pypi
Install Proton Safe MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "proton-bridge-user",
"description": "PROTON_BRIDGE_USER",
"password": true
},
{
"type": "promptString",
"id": "proton-imap-port",
"description": "PROTON_IMAP_PORT",
"password": true
}
],
"servers": {
"proton-safe-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"proton-safe-mcp"
],
"env": {
"PROTON_BRIDGE_USER": "${input:proton-bridge-user}",
"PROTON_IMAP_PORT": "${input:proton-imap-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs