Cribl · Capability

Cribl Edge API — Edge Pipelines

Cribl Edge API — Edge Pipelines. 2 operations. Lead operation: List edge pipelines in a fleet. Self-contained Naftiko capability covering one Cribl business surface.

Run with Naftiko CriblEdge Pipelines

What You Can Do

GET
Listedgepipelines — List edge pipelines in a fleet
/v1/m/{fleetid}/pipelines
POST
Createedgepipeline — Create an edge pipeline in a fleet
/v1/m/{fleetid}/pipelines

MCP Tools

list-edge-pipelines-fleet

List edge pipelines in a fleet

read-only idempotent
create-edge-pipeline-fleet

Create an edge pipeline in a fleet

Capability Spec

edge-edge-pipelines.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cribl Edge API — Edge Pipelines
  description: 'Cribl Edge API — Edge Pipelines. 2 operations. Lead operation: List edge pipelines in a fleet. Self-contained
    Naftiko capability covering one Cribl business surface.'
  tags:
  - Cribl
  - Edge Pipelines
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CRIBL_API_KEY: CRIBL_API_KEY
capability:
  consumes:
  - type: http
    namespace: edge-edge-pipelines
    baseUri: https://{workspaceName}-{organizationId}.cribl.cloud/api/v1
    description: Cribl Edge API — Edge Pipelines business capability. Self-contained, no shared references.
    resources:
    - name: m-fleetId-pipelines
      path: /m/{fleetId}/pipelines
      operations:
      - name: listedgepipelines
        method: GET
        description: List edge pipelines in a fleet
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createedgepipeline
        method: POST
        description: Create an edge pipeline in a fleet
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.CRIBL_API_KEY}}'
  exposes:
  - type: rest
    namespace: edge-edge-pipelines-rest
    port: 8080
    description: REST adapter for Cribl Edge API — Edge Pipelines. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/m/{fleetid}/pipelines
      name: m-fleetid-pipelines
      description: REST surface for m-fleetId-pipelines.
      operations:
      - method: GET
        name: listedgepipelines
        description: List edge pipelines in a fleet
        call: edge-edge-pipelines.listedgepipelines
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createedgepipeline
        description: Create an edge pipeline in a fleet
        call: edge-edge-pipelines.createedgepipeline
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: edge-edge-pipelines-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cribl Edge API — Edge Pipelines. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-edge-pipelines-fleet
      description: List edge pipelines in a fleet
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: edge-edge-pipelines.listedgepipelines
      outputParameters:
      - type: object
        mapping: $.
    - name: create-edge-pipeline-fleet
      description: Create an edge pipeline in a fleet
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: edge-edge-pipelines.createedgepipeline
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.