Gmail MCP Server for VS Code
io.github.artymclabin/gmail-mcp-server
Lean Gmail MCP server with auto authentication support
client:VS Code
transport:stdio
runtime:npm
Install Gmail MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gmail-oauth-path",
"description": "GMAIL_OAUTH_PATH",
"password": true
},
{
"type": "promptString",
"id": "gmail-credentials-path",
"description": "GMAIL_CREDENTIALS_PATH",
"password": true
}
],
"servers": {
"gmail-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@artymclabin/gmail-mcp"
],
"env": {
"GMAIL_OAUTH_PATH": "${input:gmail-oauth-path}",
"GMAIL_CREDENTIALS_PATH": "${input:gmail-credentials-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs