connect_minio
Establish a connection to MinIO Storage MCP by providing server details, authentication keys, and SSL preferences to enable object storage operations like uploads, downloads, and permissions management.
Instructions
连接到MinIO服务器
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessKey | Yes | 访问密钥 | |
endPoint | Yes | MinIO服务器地址 | |
port | Yes | MinIO服务器端口 | |
region | No | 区域设置(可选) | |
secretKey | Yes | 秘密密钥 | |
useSSL | No | 是否使用SSL连接 |
Input Schema (JSON Schema)
{
"properties": {
"accessKey": {
"description": "访问密钥",
"type": "string"
},
"endPoint": {
"description": "MinIO服务器地址",
"type": "string"
},
"port": {
"description": "MinIO服务器端口",
"type": "number"
},
"region": {
"description": "区域设置(可选)",
"type": "string"
},
"secretKey": {
"description": "秘密密钥",
"type": "string"
},
"useSSL": {
"default": false,
"description": "是否使用SSL连接",
"type": "boolean"
}
},
"required": [
"endPoint",
"port",
"accessKey",
"secretKey"
],
"type": "object"
}