Atlassian · Capability

Atlassian user — Pipelines

Atlassian user — Pipelines. 5 operations. Lead operation: Atlassian List Variables For A User. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianPipelines

What You Can Do

GET
Atlassiangetpipelinevariablesforuser — Atlassian List Variables For A User
/v1/users/{selected-user}/pipelines-config/variables
POST
Atlassiancreatepipelinevariableforuser — Atlassian Create A Variable For A User
/v1/users/{selected-user}/pipelines-config/variables
GET
Atlassiangetpipelinevariableforuser — Atlassian Get A Variable For A User
/v1/users/{selected-user}/pipelines-config/variables/{variable-uuid}
PUT
Atlassianupdatepipelinevariableforuser — Atlassian Update A Variable For A User
/v1/users/{selected-user}/pipelines-config/variables/{variable-uuid}
DELETE
Atlassiandeletepipelinevariableforuser — Atlassian Delete A Variable For A User
/v1/users/{selected-user}/pipelines-config/variables/{variable-uuid}

MCP Tools

atlassian-list-variables-user

Atlassian List Variables For A User

read-only idempotent
atlassian-create-variable-user

Atlassian Create A Variable For A User

atlassian-get-variable-user

Atlassian Get A Variable For A User

read-only idempotent
atlassian-update-variable-user

Atlassian Update A Variable For A User

idempotent
atlassian-delete-variable-user

Atlassian Delete A Variable For A User

idempotent

Capability Spec

user-pipelines.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian user — Pipelines
  description: 'Atlassian user — Pipelines. 5 operations. Lead operation: Atlassian List Variables For A User. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Pipelines
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: user-pipelines
    baseUri: https://api.bitbucket.org/2.0
    description: Atlassian user — Pipelines business capability. Self-contained, no shared references.
    resources:
    - name: users-selected_user-pipelines_config-variables
      path: /users/{selected_user}/pipelines_config/variables
      operations:
      - name: atlassiangetpipelinevariablesforuser
        method: GET
        description: Atlassian List Variables For A User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: selected_user
          in: path
          type: string
          description: Either the UUID of the account surrounded by curly-braces, for example `{account UUID}`, OR an Atlassian
            Account ID.
          required: true
      - name: atlassiancreatepipelinevariableforuser
        method: POST
        description: Atlassian Create A Variable For A User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: selected_user
          in: path
          type: string
          description: Either the UUID of the account surrounded by curly-braces, for example `{account UUID}`, OR an Atlassian
            Account ID.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: users-selected_user-pipelines_config-variables-variable_uuid
      path: /users/{selected_user}/pipelines_config/variables/{variable_uuid}
      operations:
      - name: atlassiangetpipelinevariableforuser
        method: GET
        description: Atlassian Get A Variable For A User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: selected_user
          in: path
          type: string
          description: Either the UUID of the account surrounded by curly-braces, for example `{account UUID}`, OR an Atlassian
            Account ID.
          required: true
        - name: variable_uuid
          in: path
          type: string
          description: The UUID of the variable to retrieve.
          required: true
      - name: atlassianupdatepipelinevariableforuser
        method: PUT
        description: Atlassian Update A Variable For A User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: selected_user
          in: path
          type: string
          description: Either the UUID of the account surrounded by curly-braces, for example `{account UUID}`, OR an Atlassian
            Account ID.
          required: true
        - name: variable_uuid
          in: path
          type: string
          description: The UUID of the variable.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: atlassiandeletepipelinevariableforuser
        method: DELETE
        description: Atlassian Delete A Variable For A User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: selected_user
          in: path
          type: string
          description: Either the UUID of the account surrounded by curly-braces, for example `{account UUID}`, OR an Atlassian
            Account ID.
          required: true
        - name: variable_uuid
          in: path
          type: string
          description: The UUID of the variable to delete.
          required: true
  exposes:
  - type: rest
    namespace: user-pipelines-rest
    port: 8080
    description: REST adapter for Atlassian user — Pipelines. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/users/{selected-user}/pipelines-config/variables
      name: users-selected-user-pipelines-config-variables
      description: REST surface for users-selected_user-pipelines_config-variables.
      operations:
      - method: GET
        name: atlassiangetpipelinevariablesforuser
        description: Atlassian List Variables For A User
        call: user-pipelines.atlassiangetpipelinevariablesforuser
        with:
          selected_user: rest.selected_user
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: atlassiancreatepipelinevariableforuser
        description: Atlassian Create A Variable For A User
        call: user-pipelines.atlassiancreatepipelinevariableforuser
        with:
          selected_user: rest.selected_user
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{selected-user}/pipelines-config/variables/{variable-uuid}
      name: users-selected-user-pipelines-config-variables-variable-uuid
      description: REST surface for users-selected_user-pipelines_config-variables-variable_uuid.
      operations:
      - method: GET
        name: atlassiangetpipelinevariableforuser
        description: Atlassian Get A Variable For A User
        call: user-pipelines.atlassiangetpipelinevariableforuser
        with:
          selected_user: rest.selected_user
          variable_uuid: rest.variable_uuid
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: atlassianupdatepipelinevariableforuser
        description: Atlassian Update A Variable For A User
        call: user-pipelines.atlassianupdatepipelinevariableforuser
        with:
          selected_user: rest.selected_user
          variable_uuid: rest.variable_uuid
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: atlassiandeletepipelinevariableforuser
        description: Atlassian Delete A Variable For A User
        call: user-pipelines.atlassiandeletepipelinevariableforuser
        with:
          selected_user: rest.selected_user
          variable_uuid: rest.variable_uuid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: user-pipelines-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian user — Pipelines. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: atlassian-list-variables-user
      description: Atlassian List Variables For A User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: user-pipelines.atlassiangetpipelinevariablesforuser
      with:
        selected_user: tools.selected_user
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-create-variable-user
      description: Atlassian Create A Variable For A User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: user-pipelines.atlassiancreatepipelinevariableforuser
      with:
        selected_user: tools.selected_user
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-variable-user
      description: Atlassian Get A Variable For A User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: user-pipelines.atlassiangetpipelinevariableforuser
      with:
        selected_user: tools.selected_user
        variable_uuid: tools.variable_uuid
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-update-variable-user
      description: Atlassian Update A Variable For A User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: user-pipelines.atlassianupdatepipelinevariableforuser
      with:
        selected_user: tools.selected_user
        variable_uuid: tools.variable_uuid
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-delete-variable-user
      description: Atlassian Delete A Variable For A User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: user-pipelines.atlassiandeletepipelinevariableforuser
      with:
        selected_user: tools.selected_user
        variable_uuid: tools.variable_uuid
      outputParameters:
      - type: object
        mapping: $.