llamaindex · Capability

LlamaIndex LlamaCloud API — Pipelines

LlamaIndex LlamaCloud API — Pipelines. 5 operations. Lead operation: List pipelines. Self-contained Naftiko capability covering one Llamaindex business surface.

Run with Naftiko LlamaindexPipelines

What You Can Do

GET
Listpipelines — List pipelines
/v1/pipelines
POST
Createpipeline — Create a pipeline
/v1/pipelines
GET
Getpipeline — Get a pipeline
/v1/pipelines/{pipelineid}
DELETE
Deletepipeline — Delete a pipeline
/v1/pipelines/{pipelineid}
POST
Syncpipeline — Sync a pipeline
/v1/pipelines/{pipelineid}/sync

MCP Tools

list-pipelines

List pipelines

read-only idempotent
create-pipeline

Create a pipeline

get-pipeline

Get a pipeline

read-only idempotent
delete-pipeline

Delete a pipeline

idempotent
sync-pipeline

Sync a pipeline

Capability Spec

llamacloud-pipelines.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LlamaIndex LlamaCloud API — Pipelines
  description: 'LlamaIndex LlamaCloud API — Pipelines. 5 operations. Lead operation: List pipelines. Self-contained Naftiko
    capability covering one Llamaindex business surface.'
  tags:
  - Llamaindex
  - Pipelines
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LLAMAINDEX_API_KEY: LLAMAINDEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: llamacloud-pipelines
    baseUri: https://api.cloud.llamaindex.ai/api/v1
    description: LlamaIndex LlamaCloud API — Pipelines business capability. Self-contained, no shared references.
    resources:
    - name: pipelines
      path: /pipelines
      operations:
      - name: listpipelines
        method: GET
        description: List pipelines
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project_id
          in: query
          type: string
          description: Filter pipelines by project identifier.
          required: true
      - name: createpipeline
        method: POST
        description: Create a pipeline
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: pipelines-pipelineId
      path: /pipelines/{pipelineId}
      operations:
      - name: getpipeline
        method: GET
        description: Get a pipeline
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletepipeline
        method: DELETE
        description: Delete a pipeline
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: pipelines-pipelineId-sync
      path: /pipelines/{pipelineId}/sync
      operations:
      - name: syncpipeline
        method: POST
        description: Sync a pipeline
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LLAMAINDEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: llamacloud-pipelines-rest
    port: 8080
    description: REST adapter for LlamaIndex LlamaCloud API — Pipelines. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/pipelines
      name: pipelines
      description: REST surface for pipelines.
      operations:
      - method: GET
        name: listpipelines
        description: List pipelines
        call: llamacloud-pipelines.listpipelines
        with:
          project_id: rest.project_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpipeline
        description: Create a pipeline
        call: llamacloud-pipelines.createpipeline
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/pipelines/{pipelineid}
      name: pipelines-pipelineid
      description: REST surface for pipelines-pipelineId.
      operations:
      - method: GET
        name: getpipeline
        description: Get a pipeline
        call: llamacloud-pipelines.getpipeline
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletepipeline
        description: Delete a pipeline
        call: llamacloud-pipelines.deletepipeline
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/pipelines/{pipelineid}/sync
      name: pipelines-pipelineid-sync
      description: REST surface for pipelines-pipelineId-sync.
      operations:
      - method: POST
        name: syncpipeline
        description: Sync a pipeline
        call: llamacloud-pipelines.syncpipeline
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: llamacloud-pipelines-mcp
    port: 9090
    transport: http
    description: MCP adapter for LlamaIndex LlamaCloud API — Pipelines. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-pipelines
      description: List pipelines
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamacloud-pipelines.listpipelines
      with:
        project_id: tools.project_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-pipeline
      description: Create a pipeline
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: llamacloud-pipelines.createpipeline
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-pipeline
      description: Get a pipeline
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamacloud-pipelines.getpipeline
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-pipeline
      description: Delete a pipeline
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: llamacloud-pipelines.deletepipeline
      outputParameters:
      - type: object
        mapping: $.
    - name: sync-pipeline
      description: Sync a pipeline
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: llamacloud-pipelines.syncpipeline
      outputParameters:
      - type: object
        mapping: $.