Skip to content
VS Code

mcp ecc for VS Code

io.github.karljsamuel/mcp-ecc

Unified MCP server for Email, Calendar & Contacts (Google, M365, Zoho, IMAP/SMTP, DAV).

client:VS Code transport:stdio runtime:npm

Install mcp ecc in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-encryption-key",
      "description": "MCP_ENCRYPTION_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-ecc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-ecc"
      ],
      "env": {
        "MCP_ENCRYPTION_KEY": "${input:mcp-encryption-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp ecc in other clients