blob_upload
Uploads Base64 encoded file content to a specified Blob Storage container on Azure MCP Server, enabling secure and tracked file storage operations.
Instructions
Upload a blob to Blob Storage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blob_name | Yes | Name of the blob in the container | |
container_name | Yes | Name of the Blob Storage container | |
file_content | Yes | Base64 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"
}