Atlassian · Capability

Atlassian Confluence Content API — Properties

Atlassian Confluence Content API — Properties. 7 operations. Lead operation: Atlassian Update Attachment Properties. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianProperties

What You Can Do

PUT
Updateattachmentproperties — Atlassian Update Attachment Properties
/v1/wiki/rest/api/content/{id}/child/attachment/{attachmentid}
GET
Getcontentproperties — Atlassian Get Content Properties
/v1/wiki/rest/api/content/{id}/property
POST
Createcontentproperty — Atlassian Create Content Property
/v1/wiki/rest/api/content/{id}/property
GET
Getcontentproperty — Atlassian Get Content Property
/v1/wiki/rest/api/content/{id}/property/{key}
PUT
Updatecontentproperty — Atlassian Update Content Property
/v1/wiki/rest/api/content/{id}/property/{key}
POST
Createcontentpropertyforkey — Atlassian Create Content Property for Key
/v1/wiki/rest/api/content/{id}/property/{key}
DELETE
Deletecontentproperty — Atlassian Delete Content Property
/v1/wiki/rest/api/content/{id}/property/{key}

MCP Tools

atlassian-update-attachment-properties

Atlassian Update Attachment Properties

idempotent
atlassian-get-content-properties

Atlassian Get Content Properties

read-only idempotent
atlassian-create-content-property

Atlassian Create Content Property

atlassian-get-content-property

Atlassian Get Content Property

read-only idempotent
atlassian-update-content-property

Atlassian Update Content Property

idempotent
atlassian-create-content-property-key

Atlassian Create Content Property for Key

atlassian-delete-content-property

Atlassian Delete Content Property

idempotent

Capability Spec

confluence-content-properties.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian Confluence Content API — Properties
  description: 'Atlassian Confluence Content API — Properties. 7 operations. Lead operation: Atlassian Update Attachment Properties.
    Self-contained Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Properties
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: confluence-content-properties
    baseUri: ''
    description: Atlassian Confluence Content API — Properties business capability. Self-contained, no shared references.
    resources:
    - name: wiki-rest-api-content-id-child-attachment-attachmentId
      path: /wiki/rest/api/content/{id}/child/attachment/{attachmentId}
      operations:
      - name: updateattachmentproperties
        method: PUT
        description: Atlassian Update Attachment Properties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content that the attachment is attached to.
          required: true
        - name: attachmentId
          in: path
          type: string
          description: The ID of the attachment to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: wiki-rest-api-content-id-property
      path: /wiki/rest/api/content/{id}/property
      operations:
      - name: getcontentproperties
        method: GET
        description: Atlassian Get Content Properties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content to be queried for its properties.
          required: true
        - name: key
          in: query
          type: array
          description: The key of the content property.
        - name: expand
          in: query
          type: array
          description: A multi-value parameter indicating which properties of the content to
        - name: start
          in: query
          type: integer
          description: The starting index of the returned properties.
        - name: limit
          in: query
          type: integer
          description: The maximum number of properties to return per page.
      - name: createcontentproperty
        method: POST
        description: Atlassian Create Content Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content to add the property to.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: wiki-rest-api-content-id-property-key
      path: /wiki/rest/api/content/{id}/property/{key}
      operations:
      - name: getcontentproperty
        method: GET
        description: Atlassian Get Content Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content to be queried for the property.
          required: true
        - name: key
          in: path
          type: string
          description: The key of the content property.
          required: true
        - name: expand
          in: query
          type: array
          description: A multi-value parameter indicating which properties of the content to
        - name: status
          in: query
          type: array
          description: Filter the results to a set of content based on their status. If set to `any`,
      - name: updatecontentproperty
        method: PUT
        description: Atlassian Update Content Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content that the property belongs to.
          required: true
        - name: key
          in: path
          type: string
          description: The key of the property.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: createcontentpropertyforkey
        method: POST
        description: Atlassian Create Content Property for Key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content to add the property to.
          required: true
        - name: key
          in: path
          type: string
          description: The key of the content property. Required.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecontentproperty
        method: DELETE
        description: Atlassian Delete Content Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the content that the property belongs to.
          required: true
        - name: key
          in: path
          type: string
          description: The key of the property.
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: confluence-content-properties-rest
    port: 8080
    description: REST adapter for Atlassian Confluence Content API — Properties. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/wiki/rest/api/content/{id}/child/attachment/{attachmentid}
      name: wiki-rest-api-content-id-child-attachment-attachmentid
      description: REST surface for wiki-rest-api-content-id-child-attachment-attachmentId.
      operations:
      - method: PUT
        name: updateattachmentproperties
        description: Atlassian Update Attachment Properties
        call: confluence-content-properties.updateattachmentproperties
        with:
          id: rest.id
          attachmentId: rest.attachmentId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/content/{id}/property
      name: wiki-rest-api-content-id-property
      description: REST surface for wiki-rest-api-content-id-property.
      operations:
      - method: GET
        name: getcontentproperties
        description: Atlassian Get Content Properties
        call: confluence-content-properties.getcontentproperties
        with:
          id: rest.id
          key: rest.key
          expand: rest.expand
          start: rest.start
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontentproperty
        description: Atlassian Create Content Property
        call: confluence-content-properties.createcontentproperty
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/content/{id}/property/{key}
      name: wiki-rest-api-content-id-property-key
      description: REST surface for wiki-rest-api-content-id-property-key.
      operations:
      - method: GET
        name: getcontentproperty
        description: Atlassian Get Content Property
        call: confluence-content-properties.getcontentproperty
        with:
          id: rest.id
          key: rest.key
          expand: rest.expand
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecontentproperty
        description: Atlassian Update Content Property
        call: confluence-content-properties.updatecontentproperty
        with:
          id: rest.id
          key: rest.key
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontentpropertyforkey
        description: Atlassian Create Content Property for Key
        call: confluence-content-properties.createcontentpropertyforkey
        with:
          id: rest.id
          key: rest.key
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontentproperty
        description: Atlassian Delete Content Property
        call: confluence-content-properties.deletecontentproperty
        with:
          id: rest.id
          key: rest.key
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: confluence-content-properties-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian Confluence Content API — Properties. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: atlassian-update-attachment-properties
      description: Atlassian Update Attachment Properties
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: confluence-content-properties.updateattachmentproperties
      with:
        id: tools.id
        attachmentId: tools.attachmentId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-content-properties
      description: Atlassian Get Content Properties
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: confluence-content-properties.getcontentproperties
      with:
        id: tools.id
        key: tools.key
        expand: tools.expand
        start: tools.start
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-create-content-property
      description: Atlassian Create Content Property
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: confluence-content-properties.createcontentproperty
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-content-property
      description: Atlassian Get Content Property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: confluence-content-properties.getcontentproperty
      with:
        id: tools.id
        key: tools.key
        expand: tools.expand
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-update-content-property
      description: Atlassian Update Content Property
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: confluence-content-properties.updatecontentproperty
      with:
        id: tools.id
        key: tools.key
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-create-content-property-key
      description: Atlassian Create Content Property for Key
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: confluence-content-properties.createcontentpropertyforkey
      with:
        id: tools.id
        key: tools.key
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-delete-content-property
      description: Atlassian Delete Content Property
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: confluence-content-properties.deletecontentproperty
      with:
        id: tools.id
        key: tools.key
      outputParameters:
      - type: object
        mapping: $.