better workspace mcp for VS Code
io.github.n24q02m/better-workspace-mcp
Google Workspace MCP — Docs, Drive, Calendar, Gmail, Sheets, Slides, Tasks, Chat, People, Forms
client:VS Code
transport:stdio
runtime:npm
Install better workspace mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-oauth-client-id",
"description": "GOOGLE_OAUTH_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "google-oauth-client-secret",
"description": "GOOGLE_OAUTH_CLIENT_SECRET",
"password": true
}
],
"servers": {
"better-workspace-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@n24q02m/better-workspace-mcp"
],
"env": {
"GOOGLE_OAUTH_CLIENT_ID": "${input:google-oauth-client-id}",
"GOOGLE_OAUTH_CLIENT_SECRET": "${input:google-oauth-client-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs