mcp gee sweet for VS Code
io.github.khuisman/mcp-gee-sweet
MCP server for Google Workspace — Sheets, Drive, Docs (HTML or Markdown), and Calendar.
client:VS Code
transport:stdio
runtime:pypi
Install mcp gee sweet in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "auth-method",
"description": "AUTH_METHOD",
"password": true
},
{
"type": "promptString",
"id": "credentials-path",
"description": "CREDENTIALS_PATH",
"password": true
},
{
"type": "promptString",
"id": "token-path",
"description": "TOKEN_PATH",
"password": true
},
{
"type": "promptString",
"id": "service-account-path",
"description": "SERVICE_ACCOUNT_PATH",
"password": true
},
{
"type": "promptString",
"id": "credentials-config",
"description": "CREDENTIALS_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "enabled-tools",
"description": "ENABLED_TOOLS",
"password": true
}
],
"servers": {
"mcp-gee-sweet": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-gee-sweet"
],
"env": {
"AUTH_METHOD": "${input:auth-method}",
"CREDENTIALS_PATH": "${input:credentials-path}",
"TOKEN_PATH": "${input:token-path}",
"SERVICE_ACCOUNT_PATH": "${input:service-account-path}",
"CREDENTIALS_CONFIG": "${input:credentials-config}",
"ENABLED_TOOLS": "${input:enabled-tools}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs