Skip to content
VS Code

Email2Chat for VS Code

io.github.bayramcsb/email2chat-mcp

Connect Claude to your Gmail and Outlook inbox. Read, search, and manage emails via AI.

client:VS Code transport:stdio runtime:pypi

Install Email2Chat in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "email2chat-api-key",
      "description": "EMAIL2CHAT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "email2chat-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "email2chat-mcp"
      ],
      "env": {
        "EMAIL2CHAT_API_KEY": "${input:email2chat-api-key}"
      }
    }
  }
}

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

Email2Chat in other clients