Azure MCP Server

by mashriram
Verified

blob_upload

Upload a blob to Blob Storage

Input Schema

NameRequiredDescriptionDefault
blob_nameYesName of the blob in the container
container_nameYesName of the Blob Storage container
file_contentYesBase64 encoded file content for upload

Input Schema (JSON Schema)

{ "properties": { "blob_name": { "description": "Name of the blob in the container", "type": "string" }, "container_name": { "description": "Name of the Blob Storage container", "type": "string" }, "file_content": { "description": "Base64 encoded file content for upload", "type": "string" } }, "required": [ "container_name", "blob_name", "file_content" ], "type": "object" }