blazingcdn mcp for VS Code
io.github.blazingcdn/blazingcdn-mcp
Manage BlazingCDN from AI agents: CDN zones, cache, metrics, domains, cloud storage and video CDN
client:VS Code
transport:stdio
runtime:npm
Install blazingcdn mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "blazingcdn-api-token",
"description": "BLAZINGCDN_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "blazingcdn-allow-write",
"description": "BLAZINGCDN_ALLOW_WRITE",
"password": true
},
{
"type": "promptString",
"id": "blazingcdn-allow-delete",
"description": "BLAZINGCDN_ALLOW_DELETE",
"password": true
}
],
"servers": {
"blazingcdn-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@blazingcdn/mcp"
],
"env": {
"BLAZINGCDN_API_TOKEN": "${input:blazingcdn-api-token}",
"BLAZINGCDN_ALLOW_WRITE": "${input:blazingcdn-allow-write}",
"BLAZINGCDN_ALLOW_DELETE": "${input:blazingcdn-allow-delete}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs