AWS MCP Server

s3_object_upload

Upload files to an S3 bucket by specifying the bucket name, object key, and Base64 encoded file content. Simplify data storage and retrieval on AWS with structured inputs.

Instructions

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" }
ID: v69k6ch2gh