Skip to main content
Glama

quickS3

List objects

list_objects
Read-onlyIdempotent

List objects and folders in a bucket, filtered to prefixes this access grant may read. Folders end with "/" and appear as kind "prefix".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum objects per page (default 100)
bucketYesBucket name
prefixNoFolder prefix to list, e.g. "reports/2026/". Omit for the bucket root.
connectionIdYesConnection ID from list_connections
continuationTokenNoOpaque token from a previous page

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
objectsYes
continuationTokenNo

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": {
      +    "continuationToken": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "objects": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "key": {
      +            "type": "string"
      +          },
      +          "kind": {
      +            "enum": [
      +              "object",
      +              "prefix"
      +            ],
      +            "type": "string"
      +          },
      +          "lastModified": {
      +            "type": "string"
      +          },
      +          "size": {
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "key",
      +          "kind",
      +          "size"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "objects"
      +  ],
      +  "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