download_file
Download files from MinIO storage buckets to a specified local path by providing bucket name, object name, and file path. Integrates with MinIO Storage MCP for efficient object storage management.
Instructions
从存储桶下载文件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
filePath | Yes | 本地保存路径 | |
objectName | Yes | 对象名称 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"filePath": {
"description": "本地保存路径",
"type": "string"
},
"objectName": {
"description": "对象名称",
"type": "string"
}
},
"required": [
"bucketName",
"objectName",
"filePath"
],
"type": "object"
}