AWS MCP Server

s3_object_upload

Upload an object to S3

Input Schema

NameRequiredDescriptionDefault
bucket_nameYesName of the S3 bucket
file_contentYesBase64 encoded file content for upload
object_keyYesKey/path of the object in the bucket

Input Schema (JSON Schema)

{ "properties": { "bucket_name": { "description": "Name of the S3 bucket", "type": "string" }, "file_content": { "description": "Base64 encoded file content for upload", "type": "string" }, "object_key": { "description": "Key/path of the object in the bucket", "type": "string" } }, "required": [ "bucket_name", "object_key", "file_content" ], "type": "object" }