fastly · Capability

Fastly Access Control Lists API — ACL Entry

Fastly Access Control Lists API — ACL Entry. 4 operations. Lead operation: Bulk update ACL entries. Self-contained Naftiko capability covering one Fastly business surface.

Run with Naftiko FastlyACL Entry

What You Can Do

PATCH
Bulkupdateaclentries — Bulk update ACL entries
/v1/service/{service-id}/acl/{acl-id}/entries
GET
Getaclentry — Get an ACL entry
/v1/service/{service-id}/acl/{acl-id}/entry/{acl-entry-id}
PATCH
Updateaclentry — Update an ACL entry
/v1/service/{service-id}/acl/{acl-id}/entry/{acl-entry-id}
DELETE
Deleteaclentry — Delete an ACL entry
/v1/service/{service-id}/acl/{acl-id}/entry/{acl-entry-id}

MCP Tools

bulk-update-acl-entries

Bulk update ACL entries

idempotent
get-acl-entry

Get an ACL entry

read-only idempotent
update-acl-entry

Update an ACL entry

idempotent
delete-acl-entry

Delete an ACL entry

idempotent

Capability Spec

acls-acl-entry.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fastly Access Control Lists API — ACL Entry
  description: 'Fastly Access Control Lists API — ACL Entry. 4 operations. Lead operation: Bulk update ACL entries. Self-contained
    Naftiko capability covering one Fastly business surface.'
  tags:
  - Fastly
  - ACL Entry
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FASTLY_API_KEY: FASTLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: acls-acl-entry
    baseUri: https://api.fastly.com
    description: Fastly Access Control Lists API — ACL Entry business capability. Self-contained, no shared references.
    resources:
    - name: service-service_id-acl-acl_id-entries
      path: /service/{service_id}/acl/{acl_id}/entries
      operations:
      - name: bulkupdateaclentries
        method: PATCH
        description: Bulk update ACL entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: acl_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: service-service_id-acl-acl_id-entry-acl_entry_id
      path: /service/{service_id}/acl/{acl_id}/entry/{acl_entry_id}
      operations:
      - name: getaclentry
        method: GET
        description: Get an ACL entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: acl_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL.
          required: true
        - name: acl_entry_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL entry.
          required: true
      - name: updateaclentry
        method: PATCH
        description: Update an ACL entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: acl_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL.
          required: true
        - name: acl_entry_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL entry.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteaclentry
        method: DELETE
        description: Delete an ACL entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: acl_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL.
          required: true
        - name: acl_entry_id
          in: path
          type: string
          description: The alphanumeric string identifying the ACL entry.
          required: true
    authentication:
      type: apikey
      key: Fastly-Key
      value: '{{env.FASTLY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: acls-acl-entry-rest
    port: 8080
    description: REST adapter for Fastly Access Control Lists API — ACL Entry. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/service/{service-id}/acl/{acl-id}/entries
      name: service-service-id-acl-acl-id-entries
      description: REST surface for service-service_id-acl-acl_id-entries.
      operations:
      - method: PATCH
        name: bulkupdateaclentries
        description: Bulk update ACL entries
        call: acls-acl-entry.bulkupdateaclentries
        with:
          acl_id: rest.acl_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/service/{service-id}/acl/{acl-id}/entry/{acl-entry-id}
      name: service-service-id-acl-acl-id-entry-acl-entry-id
      description: REST surface for service-service_id-acl-acl_id-entry-acl_entry_id.
      operations:
      - method: GET
        name: getaclentry
        description: Get an ACL entry
        call: acls-acl-entry.getaclentry
        with:
          acl_id: rest.acl_id
          acl_entry_id: rest.acl_entry_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateaclentry
        description: Update an ACL entry
        call: acls-acl-entry.updateaclentry
        with:
          acl_id: rest.acl_id
          acl_entry_id: rest.acl_entry_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteaclentry
        description: Delete an ACL entry
        call: acls-acl-entry.deleteaclentry
        with:
          acl_id: rest.acl_id
          acl_entry_id: rest.acl_entry_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: acls-acl-entry-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fastly Access Control Lists API — ACL Entry. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bulk-update-acl-entries
      description: Bulk update ACL entries
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: acls-acl-entry.bulkupdateaclentries
      with:
        acl_id: tools.acl_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-acl-entry
      description: Get an ACL entry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: acls-acl-entry.getaclentry
      with:
        acl_id: tools.acl_id
        acl_entry_id: tools.acl_entry_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-acl-entry
      description: Update an ACL entry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: acls-acl-entry.updateaclentry
      with:
        acl_id: tools.acl_id
        acl_entry_id: tools.acl_entry_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-acl-entry
      description: Delete an ACL entry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: acls-acl-entry.deleteaclentry
      with:
        acl_id: tools.acl_id
        acl_entry_id: tools.acl_entry_id
      outputParameters:
      - type: object
        mapping: $.