google docs for VS Code
com.pulsemcp/google-docs
MCP server for Google Docs integration with OAuth2 and service account support.
client:VS Code
transport:stdio
runtime:npm
Install google docs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-docs-oauth-client-id",
"description": "GOOGLE_DOCS_OAUTH_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "google-docs-oauth-client-secret",
"description": "GOOGLE_DOCS_OAUTH_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "google-docs-oauth-refresh-token",
"description": "GOOGLE_DOCS_OAUTH_REFRESH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "google-docs-service-account-client-email",
"description": "GOOGLE_DOCS_SERVICE_ACCOUNT_CLIENT_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "google-docs-service-account-private-key",
"description": "GOOGLE_DOCS_SERVICE_ACCOUNT_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-docs-impersonate-email",
"description": "GOOGLE_DOCS_IMPERSONATE_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "google-docs-enabled-toolgroups",
"description": "GOOGLE_DOCS_ENABLED_TOOLGROUPS",
"password": true
}
],
"servers": {
"google-docs": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"google-docs-workspace-mcp-server"
],
"env": {
"GOOGLE_DOCS_OAUTH_CLIENT_ID": "${input:google-docs-oauth-client-id}",
"GOOGLE_DOCS_OAUTH_CLIENT_SECRET": "${input:google-docs-oauth-client-secret}",
"GOOGLE_DOCS_OAUTH_REFRESH_TOKEN": "${input:google-docs-oauth-refresh-token}",
"GOOGLE_DOCS_SERVICE_ACCOUNT_CLIENT_EMAIL": "${input:google-docs-service-account-client-email}",
"GOOGLE_DOCS_SERVICE_ACCOUNT_PRIVATE_KEY": "${input:google-docs-service-account-private-key}",
"GOOGLE_DOCS_IMPERSONATE_EMAIL": "${input:google-docs-impersonate-email}",
"GOOGLE_DOCS_ENABLED_TOOLGROUPS": "${input:google-docs-enabled-toolgroups}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs