Fastly · Capability

Fastly Object Storage — Bucket

S3-compatible bucket management for Fastly Object Storage. List, create, and delete buckets in the Fastly edge object store.

Fastly Object Storage — Bucket is a Naftiko capability published by Fastly, one of 73 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET, PUT, and DELETE methods rooted at /v1/buckets.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: List buckets in Fastly Object Storage. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Fastly, Object Storage, and S3 Compatible.

Run with Naftiko FastlyObject StorageS3 Compatible

What You Can Do

GET
Listbuckets — List buckets
/v1/buckets
PUT
Createbucket — Create bucket
/v1/buckets/{bucket}
DELETE
Deletebucket — Delete bucket
/v1/buckets/{bucket}

MCP Tools

list-buckets

List buckets in Fastly Object Storage

read-only idempotent
create-bucket

Create a Fastly Object Storage bucket

idempotent
delete-bucket

Delete a Fastly Object Storage bucket

idempotent

Capability Spec

object-storage-bucket.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fastly Object Storage — Bucket
  description: S3-compatible bucket management for Fastly Object Storage. List, create, and delete buckets in the Fastly edge object store.
  tags:
  - Fastly
  - Object Storage
  - S3 Compatible
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    FASTLY_OS_ACCESS_KEY: FASTLY_OS_ACCESS_KEY
    FASTLY_OS_SECRET_KEY: FASTLY_OS_SECRET_KEY
capability:
  consumes:
  - type: http
    namespace: object-storage-bucket
    baseUri: https://storage.fastly.com
    description: Fastly Object Storage S3-compatible bucket operations.
    resources:
    - name: root
      path: /
      operations:
      - name: listbuckets
        method: GET
        description: List buckets
        outputRawFormat: xml
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: bucket
      path: /{bucket}
      operations:
      - name: createbucket
        method: PUT
        description: Create bucket
        outputRawFormat: xml
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletebucket
        method: DELETE
        description: Delete bucket
        outputRawFormat: xml
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: sigv4
      key: Authorization
      value: '{{env.FASTLY_OS_ACCESS_KEY}}:{{env.FASTLY_OS_SECRET_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: object-storage-bucket-rest
    port: 8080
    description: REST adapter for Fastly Object Storage buckets.
    resources:
    - path: /v1/buckets
      name: buckets
      description: REST surface for bucket listing.
      operations:
      - method: GET
        name: listbuckets
        description: List buckets
        call: object-storage-bucket.listbuckets
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/buckets/{bucket}
      name: bucket
      description: REST surface for a single bucket.
      operations:
      - method: PUT
        name: createbucket
        description: Create bucket
        call: object-storage-bucket.createbucket
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletebucket
        description: Delete bucket
        call: object-storage-bucket.deletebucket
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: object-storage-bucket-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fastly Object Storage buckets.
    tools:
    - name: list-buckets
      description: List buckets in Fastly Object Storage
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: object-storage-bucket.listbuckets
      outputParameters: [ { type: object, mapping: $. } ]
    - name: create-bucket
      description: Create a Fastly Object Storage bucket
      hints: { readOnly: false, destructive: false, idempotent: true }
      call: object-storage-bucket.createbucket
      outputParameters: [ { type: object, mapping: $. } ]
    - name: delete-bucket
      description: Delete a Fastly Object Storage bucket
      hints: { readOnly: false, destructive: true, idempotent: true }
      call: object-storage-bucket.deletebucket
      outputParameters: [ { type: object, mapping: $. } ]