Google Drive MCP for VS Code
io.github.piotr-agier/google-drive-mcp
Secure access to Google Drive, Docs, Sheets, Slides, and Calendar through MCP.
client:VS Code
transport:stdio
runtime:npm
Install Google Drive MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-drive-oauth-credentials",
"description": "GOOGLE_DRIVE_OAUTH_CREDENTIALS",
"password": true
}
],
"servers": {
"google-drive-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@piotr-agier/google-drive-mcp"
],
"env": {
"GOOGLE_DRIVE_OAUTH_CREDENTIALS": "${input:google-drive-oauth-credentials}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs