fastly · Capability

Fastly Real-Time Logging API — Logging HTTPS

Fastly Real-Time Logging API — Logging HTTPS. 2 operations. Lead operation: List HTTPS logging endpoints. Self-contained Naftiko capability covering one Fastly business surface.

Run with Naftiko FastlyLogging HTTPS

What You Can Do

GET
Listloghttps — List HTTPS logging endpoints
/v1/service/{service-id}/version/{version-id}/logging/https
POST
Createloghttps — Create an HTTPS logging endpoint
/v1/service/{service-id}/version/{version-id}/logging/https

MCP Tools

list-https-logging-endpoints

List HTTPS logging endpoints

read-only idempotent
create-https-logging-endpoint

Create an HTTPS logging endpoint

Capability Spec

logging-logging-https.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fastly Real-Time Logging API — Logging HTTPS
  description: 'Fastly Real-Time Logging API — Logging HTTPS. 2 operations. Lead operation: List HTTPS logging endpoints.
    Self-contained Naftiko capability covering one Fastly business surface.'
  tags:
  - Fastly
  - Logging HTTPS
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FASTLY_API_KEY: FASTLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: logging-logging-https
    baseUri: https://api.fastly.com
    description: Fastly Real-Time Logging API — Logging HTTPS business capability. Self-contained, no shared references.
    resources:
    - name: service-service_id-version-version_id-logging-https
      path: /service/{service_id}/version/{version_id}/logging/https
      operations:
      - name: listloghttps
        method: GET
        description: List HTTPS logging endpoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createloghttps
        method: POST
        description: Create an HTTPS logging endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Fastly-Key
      value: '{{env.FASTLY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: logging-logging-https-rest
    port: 8080
    description: REST adapter for Fastly Real-Time Logging API — Logging HTTPS. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/service/{service-id}/version/{version-id}/logging/https
      name: service-service-id-version-version-id-logging-https
      description: REST surface for service-service_id-version-version_id-logging-https.
      operations:
      - method: GET
        name: listloghttps
        description: List HTTPS logging endpoints
        call: logging-logging-https.listloghttps
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createloghttps
        description: Create an HTTPS logging endpoint
        call: logging-logging-https.createloghttps
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: logging-logging-https-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fastly Real-Time Logging API — Logging HTTPS. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-https-logging-endpoints
      description: List HTTPS logging endpoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: logging-logging-https.listloghttps
      outputParameters:
      - type: object
        mapping: $.
    - name: create-https-logging-endpoint
      description: Create an HTTPS logging endpoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: logging-logging-https.createloghttps
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.