Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_s3

Manage AWS S3 buckets and objects, including listing, creating, deleting, uploading, and downloading, directly via the Ansible MCP Server. Streamline cloud storage operations efficiently.

Instructions

Manage AWS S3 buckets and objects

Input Schema

NameRequiredDescriptionDefault
aclNo
actionYes
bucketNo
contentTypeNo
localPathNo
metadataNo
objectKeyNo
regionYes
tagsNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "acl": { "type": "string" }, "action": { "enum": [ "list_buckets", "create_bucket", "delete_bucket", "list_objects", "upload", "download" ], "type": "string" }, "bucket": { "type": "string" }, "contentType": { "type": "string" }, "localPath": { "type": "string" }, "metadata": { "additionalProperties": { "type": "string" }, "type": "object" }, "objectKey": { "type": "string" }, "region": { "minLength": 1, "type": "string" }, "tags": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s