mcp server cloud fs for VS Code
io.github.nogoo9/mcp-server-cloud-fs
Cloud replacement for mcp-server-filesystem — 20 tools for S3, Azure Blob, and GCS
client:VS Code
transport:stdio
runtime:npm
Install mcp server cloud fs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "azure-storage-connection-string",
"description": "AZURE_STORAGE_CONNECTION_STRING",
"password": true
},
{
"type": "promptString",
"id": "google-cloud-project",
"description": "GOOGLE_CLOUD_PROJECT",
"password": true
},
{
"type": "promptString",
"id": "aws-access-key-id",
"description": "AWS_ACCESS_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "aws-secret-access-key",
"description": "AWS_SECRET_ACCESS_KEY",
"password": true
},
{
"type": "promptString",
"id": "redis-url",
"description": "REDIS_URL",
"password": true
}
],
"servers": {
"mcp-server-cloud-fs": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@nogoo9/mcp-server-cloud-fs"
],
"env": {
"AZURE_STORAGE_CONNECTION_STRING": "${input:azure-storage-connection-string}",
"GOOGLE_CLOUD_PROJECT": "${input:google-cloud-project}",
"AWS_ACCESS_KEY_ID": "${input:aws-access-key-id}",
"AWS_SECRET_ACCESS_KEY": "${input:aws-secret-access-key}",
"REDIS_URL": "${input:redis-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs