Fastly · Capability

Fastly Products API — Object Storage

Fastly Products API — Object Storage. Enables and configures Fastly's S3-compatible edge object storage product on a service.

Fastly Products API — Object Storage 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/enabled-products/v1/object-storage/services/{…}.

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

Tagged areas include Fastly, Object Storage, and Storage.

Run with Naftiko FastlyObject StorageStorage

What You Can Do

GET
Getobjectstoragestatus — Get Object Storage status
/v1/enabled-products/v1/object-storage/services/{service-id}
PUT
Enableobjectstorage — Enable Object Storage
/v1/enabled-products/v1/object-storage/services/{service-id}
DELETE
Disableobjectstorage — Disable Object Storage
/v1/enabled-products/v1/object-storage/services/{service-id}

MCP Tools

get-object-storage-status

Get Object Storage status

read-only idempotent
enable-object-storage

Enable Object Storage

idempotent
disable-object-storage

Disable Object Storage

idempotent

Capability Spec

products-object-storage.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fastly Products API — Object Storage
  description: Fastly Products API — Object Storage. Enables and configures Fastly's S3-compatible edge object storage product on a service.
  tags:
  - Fastly
  - Object Storage
  - Storage
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    FASTLY_API_KEY: FASTLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: products-object-storage
    baseUri: https://api.fastly.com
    description: Fastly Products API — Object Storage product enablement.
    resources:
    - name: enabled-products-v1-object_storage-services-service_id
      path: /enabled-products/v1/object_storage/services/{service_id}
      operations:
      - name: getobjectstoragestatus
        method: GET
        description: Get Object Storage status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: enableobjectstorage
        method: PUT
        description: Enable Object Storage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: disableobjectstorage
        method: DELETE
        description: Disable Object Storage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Fastly-Key
      value: '{{env.FASTLY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: products-object-storage-rest
    port: 8080
    description: REST adapter for Fastly Object Storage product.
    resources:
    - path: /v1/enabled-products/v1/object-storage/services/{service-id}
      name: enabled-products-v1-object-storage-services-service-id
      description: REST surface for the Object Storage product enablement endpoint.
      operations:
      - method: GET
        name: getobjectstoragestatus
        description: Get Object Storage status
        call: products-object-storage.getobjectstoragestatus
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: enableobjectstorage
        description: Enable Object Storage
        call: products-object-storage.enableobjectstorage
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: disableobjectstorage
        description: Disable Object Storage
        call: products-object-storage.disableobjectstorage
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: products-object-storage-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fastly Object Storage product.
    tools:
    - name: get-object-storage-status
      description: Get Object Storage status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: products-object-storage.getobjectstoragestatus
      outputParameters:
      - type: object
        mapping: $.
    - name: enable-object-storage
      description: Enable Object Storage
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: products-object-storage.enableobjectstorage
      outputParameters:
      - type: object
        mapping: $.
    - name: disable-object-storage
      description: Disable Object Storage
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: products-object-storage.disableobjectstorage
      outputParameters:
      - type: object
        mapping: $.