s3_bucket_create
Create a new Amazon S3 bucket by specifying a unique name. This tool enables users to manage AWS storage resources programmatically through natural language commands on the AWS MCP Server.
Instructions
Create a new S3 bucket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket_name | Yes | Name of the S3 bucket to create |
Input Schema (JSON Schema)
{
"properties": {
"bucket_name": {
"description": "Name of the S3 bucket to create",
"type": "string"
}
},
"required": [
"bucket_name"
],
"type": "object"
}