Cloudinary Asset Management for VS Code
io.github.subomi/sample-mcp
Upload, organize, search, and transform images, videos, and files with AI-powered tools.
client:VS Code
transport:stdio
runtime:npm
Install Cloudinary Asset Management in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cloudinary-cloud-name",
"description": "CLOUDINARY_CLOUD_NAME",
"password": true
},
{
"type": "promptString",
"id": "cloudinary-api-key",
"description": "CLOUDINARY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "cloudinary-api-secret",
"description": "CLOUDINARY_API_SECRET",
"password": true
}
],
"servers": {
"sample-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sample-mcp"
],
"env": {
"CLOUDINARY_CLOUD_NAME": "${input:cloudinary-cloud-name}",
"CLOUDINARY_API_KEY": "${input:cloudinary-api-key}",
"CLOUDINARY_API_SECRET": "${input:cloudinary-api-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs