Skip to main content
Glama

quickS3

Create upload URL

create_upload_url
Idempotent

Create a short-lived presigned upload URL (valid 15 minutes) for one object. Upload the file directly to your storage provider with an HTTP PUT to the returned url, sending every header in the returned headers (e.g. curl -H "x-ms-blob-type: BlockBlob" -T localfile "<url>" for Azure). Uploads fail without those headers. quickS3 never sees or stores the file contents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesObject key to write, e.g. "reports/2026/q3.csv"
sizeYesFile size in bytes
bucketYesBucket name
overwriteNoAllow replacing an existing object (default false)
contentTypeNoContent type of the file, e.g. "text/csv"
connectionIdYesConnection ID from list_connections

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
methodYes
headersYes
maxBytesYes
expiresAtYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "additionalProperties": false,
      +  "properties": {
      +    "expiresAt": {
      +      "type": "string"
      +    },
      +    "headers": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    },
      +    "maxBytes": {
      +      "type": "number"
      +    },
      +    "method": {
      +      "type": "string"
      +    },
      +    "url": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "url",
      +    "method",
      +    "headers",
      +    "expiresAt",
      +    "maxBytes"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

Score is being calculated.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources