Atlassian · Capability

Atlassian Bit Bucket User API — Applications

Atlassian Bit Bucket User API — Applications. 3 operations. Lead operation: Atlassian Update User Application Property. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianApplications

What You Can Do

PUT
Updateuserapplicationproperty — Atlassian Update User Application Property
/v1/users/{selected-user}/properties/{app-key}/{property-name}
DELETE
Deleteuserapplicationproperty — Atlassian Delete User Application Property
/v1/users/{selected-user}/properties/{app-key}/{property-name}
GET
Getuserapplicationproperty — Atlassian Get User Application Property
/v1/users/{selected-user}/properties/{app-key}/{property-name}

MCP Tools

atlassian-update-user-application-property

Atlassian Update User Application Property

idempotent
atlassian-delete-user-application-property

Atlassian Delete User Application Property

idempotent
atlassian-get-user-application-property

Atlassian Get User Application Property

read-only idempotent

Capability Spec

bitbucket-user-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian Bit Bucket User API — Applications
  description: 'Atlassian Bit Bucket User API — Applications. 3 operations. Lead operation: Atlassian Update User Application
    Property. Self-contained Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: bitbucket-user-applications
    baseUri: https://api.bitbucket.org/2.0
    description: Atlassian Bit Bucket User API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: users-selected_user-properties-app_key-property_name
      path: /users/{selected_user}/properties/{app_key}/{property_name}
      operations:
      - name: updateuserapplicationproperty
        method: PUT
        description: Atlassian Update User Application Property
        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: app_key
          in: path
          type: string
          description: The key of the Connect app.
          required: true
        - name: property_name
          in: path
          type: string
          description: The name of the property.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteuserapplicationproperty
        method: DELETE
        description: Atlassian Delete User Application Property
        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: app_key
          in: path
          type: string
          description: The key of the Connect app.
          required: true
        - name: property_name
          in: path
          type: string
          description: The name of the property.
          required: true
      - name: getuserapplicationproperty
        method: GET
        description: Atlassian Get User Application Property
        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: app_key
          in: path
          type: string
          description: The key of the Connect app.
          required: true
        - name: property_name
          in: path
          type: string
          description: The name of the property.
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: bitbucket-user-applications-rest
    port: 8080
    description: REST adapter for Atlassian Bit Bucket User API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/users/{selected-user}/properties/{app-key}/{property-name}
      name: users-selected-user-properties-app-key-property-name
      description: REST surface for users-selected_user-properties-app_key-property_name.
      operations:
      - method: PUT
        name: updateuserapplicationproperty
        description: Atlassian Update User Application Property
        call: bitbucket-user-applications.updateuserapplicationproperty
        with:
          selected_user: rest.selected_user
          app_key: rest.app_key
          property_name: rest.property_name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuserapplicationproperty
        description: Atlassian Delete User Application Property
        call: bitbucket-user-applications.deleteuserapplicationproperty
        with:
          selected_user: rest.selected_user
          app_key: rest.app_key
          property_name: rest.property_name
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getuserapplicationproperty
        description: Atlassian Get User Application Property
        call: bitbucket-user-applications.getuserapplicationproperty
        with:
          selected_user: rest.selected_user
          app_key: rest.app_key
          property_name: rest.property_name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bitbucket-user-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian Bit Bucket User API — Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: atlassian-update-user-application-property
      description: Atlassian Update User Application Property
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: bitbucket-user-applications.updateuserapplicationproperty
      with:
        selected_user: tools.selected_user
        app_key: tools.app_key
        property_name: tools.property_name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-delete-user-application-property
      description: Atlassian Delete User Application Property
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: bitbucket-user-applications.deleteuserapplicationproperty
      with:
        selected_user: tools.selected_user
        app_key: tools.app_key
        property_name: tools.property_name
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-user-application-property
      description: Atlassian Get User Application Property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bitbucket-user-applications.getuserapplicationproperty
      with:
        selected_user: tools.selected_user
        app_key: tools.app_key
        property_name: tools.property_name
      outputParameters:
      - type: object
        mapping: $.