blob_read
Retrieve content from Azure Blob Storage by specifying the container and blob name. Supports integration with Azure MCP Server for secure, logged operations.
Instructions
Read a blob's content from Blob Storage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blob_name | Yes | Name of the blob to read | |
container_name | Yes | Name of the Blob Storage container |
Input Schema (JSON Schema)
{
"properties": {
"blob_name": {
"description": "Name of the blob to read",
"type": "string"
},
"container_name": {
"description": "Name of the Blob Storage container",
"type": "string"
}
},
"required": [
"container_name",
"blob_name"
],
"type": "object"
}