gcs for VS Code
com.pulsemcp/gcs
MCP server for Google Cloud Storage with fine-grained tool access control.
client:VS Code
transport:stdio
runtime:npm
Install gcs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gcs-project-id",
"description": "GCS_PROJECT_ID",
"password": true
},
{
"type": "promptString",
"id": "gcs-service-account-key-file",
"description": "GCS_SERVICE_ACCOUNT_KEY_FILE",
"password": true
},
{
"type": "promptString",
"id": "gcs-service-account-key-json",
"description": "GCS_SERVICE_ACCOUNT_KEY_JSON",
"password": true
},
{
"type": "promptString",
"id": "gcs-bucket",
"description": "GCS_BUCKET",
"password": true
},
{
"type": "promptString",
"id": "gcs-enabled-toolgroups",
"description": "GCS_ENABLED_TOOLGROUPS",
"password": true
},
{
"type": "promptString",
"id": "gcs-enabled-tools",
"description": "GCS_ENABLED_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "gcs-disabled-tools",
"description": "GCS_DISABLED_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "skip-health-checks",
"description": "SKIP_HEALTH_CHECKS",
"password": true
}
],
"servers": {
"gcs": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gcs-google-mcp-server"
],
"env": {
"GCS_PROJECT_ID": "${input:gcs-project-id}",
"GCS_SERVICE_ACCOUNT_KEY_FILE": "${input:gcs-service-account-key-file}",
"GCS_SERVICE_ACCOUNT_KEY_JSON": "${input:gcs-service-account-key-json}",
"GCS_BUCKET": "${input:gcs-bucket}",
"GCS_ENABLED_TOOLGROUPS": "${input:gcs-enabled-toolgroups}",
"GCS_ENABLED_TOOLS": "${input:gcs-enabled-tools}",
"GCS_DISABLED_TOOLS": "${input:gcs-disabled-tools}",
"SKIP_HEALTH_CHECKS": "${input:skip-health-checks}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs