Bitbucket · Capability

Bitbucket API — Downloads

Bitbucket API — Downloads. 4 operations. Lead operation: List download artifacts. Self-contained Naftiko capability covering one Bitbucket business surface.

Run with Naftiko BitbucketDownloads

What You Can Do

GET
Get — List download artifacts
/v1/repositories/{workspace}/{repo-slug}/downloads
POST
Post — Upload a download artifact
/v1/repositories/{workspace}/{repo-slug}/downloads
DELETE
Delete — Delete a download artifact
/v1/repositories/{workspace}/{repo-slug}/downloads/{filename}
GET
Get — Get a download artifact link
/v1/repositories/{workspace}/{repo-slug}/downloads/{filename}

MCP Tools

list-download-artifacts

List download artifacts

read-only idempotent
upload-download-artifact

Upload a download artifact

delete-download-artifact

Delete a download artifact

idempotent
get-download-artifact-link

Get a download artifact link

read-only idempotent

Capability Spec

cloud-rest-downloads.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bitbucket API — Downloads
  description: 'Bitbucket API — Downloads. 4 operations. Lead operation: List download artifacts. Self-contained Naftiko capability
    covering one Bitbucket business surface.'
  tags:
  - Bitbucket
  - Downloads
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BITBUCKET_API_KEY: BITBUCKET_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloud-rest-downloads
    baseUri: https://api.bitbucket.org/2.0
    description: Bitbucket API — Downloads business capability. Self-contained, no shared references.
    resources:
    - name: repositories-workspace-repo_slug-downloads
      path: /repositories/{workspace}/{repo_slug}/downloads
      operations:
      - name: get
        method: GET
        description: List download artifacts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Upload a download artifact
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: repositories-workspace-repo_slug-downloads-filename
      path: /repositories/{workspace}/{repo_slug}/downloads/{filename}
      operations:
      - name: delete
        method: DELETE
        description: Delete a download artifact
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: get
        method: GET
        description: Get a download artifact link
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: cloud-rest-downloads-rest
    port: 8080
    description: REST adapter for Bitbucket API — Downloads. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repositories/{workspace}/{repo-slug}/downloads
      name: repositories-workspace-repo-slug-downloads
      description: REST surface for repositories-workspace-repo_slug-downloads.
      operations:
      - method: GET
        name: get
        description: List download artifacts
        call: cloud-rest-downloads.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Upload a download artifact
        call: cloud-rest-downloads.post
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repositories/{workspace}/{repo-slug}/downloads/{filename}
      name: repositories-workspace-repo-slug-downloads-filename
      description: REST surface for repositories-workspace-repo_slug-downloads-filename.
      operations:
      - method: DELETE
        name: delete
        description: Delete a download artifact
        call: cloud-rest-downloads.delete
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: get
        description: Get a download artifact link
        call: cloud-rest-downloads.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloud-rest-downloads-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bitbucket API — Downloads. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-download-artifacts
      description: List download artifacts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-rest-downloads.get
      outputParameters:
      - type: object
        mapping: $.
    - name: upload-download-artifact
      description: Upload a download artifact
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloud-rest-downloads.post
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-download-artifact
      description: Delete a download artifact
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: cloud-rest-downloads.delete
      outputParameters:
      - type: object
        mapping: $.
    - name: get-download-artifact-link
      description: Get a download artifact link
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-rest-downloads.get
      outputParameters:
      - type: object
        mapping: $.