AWS MCP Server

s3_object_read

Read an object's content from S3

Input Schema

NameRequiredDescriptionDefault
bucket_nameYesName of the S3 bucket
object_keyYesKey/path of the object to read

Input Schema (JSON Schema)

{ "properties": { "bucket_name": { "description": "Name of the S3 bucket", "type": "string" }, "object_key": { "description": "Key/path of the object to read", "type": "string" } }, "required": [ "bucket_name", "object_key" ], "type": "object" }