Backblaze B2 MCP Server for VS Code
io.github.backblaze-labs/b2-mcp
Official Backblaze B2 MCP server for buckets, files, keys, Object Lock, and S3 storage.
client:VS Code
transport:stdio
runtime:npm
Install Backblaze B2 MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "b2-application-key-id",
"description": "B2_APPLICATION_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "b2-application-key",
"description": "B2_APPLICATION_KEY",
"password": true
},
{
"type": "promptString",
"id": "b2-region",
"description": "B2_REGION",
"password": true
},
{
"type": "promptString",
"id": "b2-master-key-id",
"description": "B2_MASTER_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "b2-master-key",
"description": "B2_MASTER_KEY",
"password": true
}
],
"servers": {
"b2-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@backblaze-labs/b2-mcp"
],
"env": {
"B2_APPLICATION_KEY_ID": "${input:b2-application-key-id}",
"B2_APPLICATION_KEY": "${input:b2-application-key}",
"B2_REGION": "${input:b2-region}",
"B2_MASTER_KEY_ID": "${input:b2-master-key-id}",
"B2_MASTER_KEY": "${input:b2-master-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs