s3-management
Manage AWS S3 buckets and objects via MCP. Use when asked to browse, upload, download, or share S3 files.
Works with
--- name: s3-management description: Manage AWS S3 buckets and objects via MCP. Use when asked to browse, upload, download, or share S3 files. license: MIT --- # AWS S3 Management via MCP Use this skill when you need to manage S3 buckets, browse objects, upload/download files, or generate presigned URLs. ## Available Tools | Tool | What it does | |------|-------------| | `list_buckets` | List all S3 buckets in the AWS account | | `list_objects` | List objects in a bucket with optional prefix filter | | `get_object` | Download and read an object's content as text | | `put_object` | Upload text content to an S3 object | | `delete_object` | Delete an object from a bucket | | `presigned_url` | Generate a temporary presigned URL for an object | | `bucket_info` | Check if a bucket exists and get basic info | ## Workflow 1. Start with `list_buckets` to discover available buckets 2. Use `list_objects` with a prefix to browse directories within a bucket 3. `get_object` reads text content — for binary files, use `presigned_url` instead 4. `presigned_url` generates a temporary shareable link (default 1 hour expiry) ## Key Patterns - `list_objects` uses prefix-based filtering (S3 doesn't have real directories): `prefix: "uploads/2026/"` - `get_object` returns text content only — it won't work for images, binaries, or large files - `put_object` takes string content — use it for config files, JSON, text, not binary uploads - `presigned_url` is the right tool for sharing files or accessing binary content ## Safety - Always confirm before `delete_object` — S3 deletions are permanent (unless versioning is enabled) - Always confirm before `put_object` to an existing key — it overwrites without warning - Presigned URLs grant temporary access to anyone with the link — warn users about this
More DevOps & Infrastructure skills
azure-ai
microsoft/azure-skills
Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.
appinsights-instrumentation
microsoft/azure-skills
Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.
azure-storage
microsoft/azure-skills
Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Answers questions about storage access tiers (hot, cool, cold, archive), when to use each tier, and tier comparison. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics. Includes lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, storage tiers, hot cool cold archive, storage tier comparison, when to use storage tiers, lifecycle management, Azure Storage concepts. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).

