JFrog · Capability

JFrog Pipelines REST API — Pipelines

JFrog Pipelines REST API — Pipelines. 2 operations. Lead operation: JFrog List Pipelines. Self-contained Naftiko capability covering one Jfrog business surface.

Run with Naftiko JfrogPipelines

What You Can Do

GET
Listpipelines — JFrog List Pipelines
/v1/v1/pipelines
GET
Getpipeline — JFrog Get Pipeline
/v1/v1/pipelines/{pipelineid}

MCP Tools

jfrog-list-pipelines

JFrog List Pipelines

read-only idempotent
jfrog-get-pipeline

JFrog Get Pipeline

read-only idempotent

Capability Spec

pipelines-pipelines.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: JFrog Pipelines REST API — Pipelines
  description: 'JFrog Pipelines REST API — Pipelines. 2 operations. Lead operation: JFrog List Pipelines. Self-contained Naftiko
    capability covering one Jfrog business surface.'
  tags:
  - Jfrog
  - Pipelines
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JFROG_API_KEY: JFROG_API_KEY
capability:
  consumes:
  - type: http
    namespace: pipelines-pipelines
    baseUri: https://{server}.jfrog.io/pipelines/api
    description: JFrog Pipelines REST API — Pipelines business capability. Self-contained, no shared references.
    resources:
    - name: v1-pipelines
      path: /v1/pipelines
      operations:
      - name: listpipelines
        method: GET
        description: JFrog List Pipelines
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pipelineSourceIds
          in: query
          type: string
          description: Comma-separated list of pipeline source IDs to filter by
        - name: names
          in: query
          type: string
          description: Comma-separated pipeline names filter
    - name: v1-pipelines-pipelineId
      path: /v1/pipelines/{pipelineId}
      operations:
      - name: getpipeline
        method: GET
        description: JFrog Get Pipeline
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pipelineId
          in: path
          type: integer
          description: Pipeline ID
          required: true
    authentication:
      type: bearer
      token: '{{env.JFROG_API_KEY}}'
  exposes:
  - type: rest
    namespace: pipelines-pipelines-rest
    port: 8080
    description: REST adapter for JFrog Pipelines REST API — Pipelines. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/pipelines
      name: v1-pipelines
      description: REST surface for v1-pipelines.
      operations:
      - method: GET
        name: listpipelines
        description: JFrog List Pipelines
        call: pipelines-pipelines.listpipelines
        with:
          pipelineSourceIds: rest.pipelineSourceIds
          names: rest.names
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/pipelines/{pipelineid}
      name: v1-pipelines-pipelineid
      description: REST surface for v1-pipelines-pipelineId.
      operations:
      - method: GET
        name: getpipeline
        description: JFrog Get Pipeline
        call: pipelines-pipelines.getpipeline
        with:
          pipelineId: rest.pipelineId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipelines-pipelines-mcp
    port: 9090
    transport: http
    description: MCP adapter for JFrog Pipelines REST API — Pipelines. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: jfrog-list-pipelines
      description: JFrog List Pipelines
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipelines-pipelines.listpipelines
      with:
        pipelineSourceIds: tools.pipelineSourceIds
        names: tools.names
      outputParameters:
      - type: object
        mapping: $.
    - name: jfrog-get-pipeline
      description: JFrog Get Pipeline
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipelines-pipelines.getpipeline
      with:
        pipelineId: tools.pipelineId
      outputParameters:
      - type: object
        mapping: $.