Atlassian · Capability

Atlassian Confluence Content API — Pages

Atlassian Confluence Content API — Pages. 3 operations. Lead operation: Atlassian Archive Pages. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianPages

What You Can Do

POST
Archivepages — Atlassian Archive Pages
/v1/wiki/rest/api/content/archive
POST
Copysinglepage — Atlassian Copy Single Page
/v1/wiki/rest/api/content/{id}/copy
POST
Copypagehierarchy — Atlassian Copy Page Hierarchy
/v1/wiki/rest/api/content/{id}/pagehierarchy/copy

MCP Tools

atlassian-archive-pages

Atlassian Archive Pages

atlassian-copy-single-page

Atlassian Copy Single Page

atlassian-copy-page-hierarchy

Atlassian Copy Page Hierarchy

Capability Spec

confluence-content-pages.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian Confluence Content API — Pages
  description: 'Atlassian Confluence Content API — Pages. 3 operations. Lead operation: Atlassian Archive Pages. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Pages
  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-pages
    baseUri: ''
    description: Atlassian Confluence Content API — Pages business capability. Self-contained, no shared references.
    resources:
    - name: wiki-rest-api-content-archive
      path: /wiki/rest/api/content/archive
      operations:
      - name: archivepages
        method: POST
        description: Atlassian Archive Pages
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: wiki-rest-api-content-id-copy
      path: /wiki/rest/api/content/{id}/copy
      operations:
      - name: copysinglepage
        method: POST
        description: Atlassian Copy Single Page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: wiki-rest-api-content-id-pagehierarchy-copy
      path: /wiki/rest/api/content/{id}/pagehierarchy/copy
      operations:
      - name: copypagehierarchy
        method: POST
        description: Atlassian Copy Page Hierarchy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: confluence-content-pages-rest
    port: 8080
    description: REST adapter for Atlassian Confluence Content API — Pages. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/wiki/rest/api/content/archive
      name: wiki-rest-api-content-archive
      description: REST surface for wiki-rest-api-content-archive.
      operations:
      - method: POST
        name: archivepages
        description: Atlassian Archive Pages
        call: confluence-content-pages.archivepages
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/content/{id}/copy
      name: wiki-rest-api-content-id-copy
      description: REST surface for wiki-rest-api-content-id-copy.
      operations:
      - method: POST
        name: copysinglepage
        description: Atlassian Copy Single Page
        call: confluence-content-pages.copysinglepage
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/content/{id}/pagehierarchy/copy
      name: wiki-rest-api-content-id-pagehierarchy-copy
      description: REST surface for wiki-rest-api-content-id-pagehierarchy-copy.
      operations:
      - method: POST
        name: copypagehierarchy
        description: Atlassian Copy Page Hierarchy
        call: confluence-content-pages.copypagehierarchy
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: confluence-content-pages-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian Confluence Content API — Pages. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: atlassian-archive-pages
      description: Atlassian Archive Pages
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: confluence-content-pages.archivepages
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-copy-single-page
      description: Atlassian Copy Single Page
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: confluence-content-pages.copysinglepage
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-copy-page-hierarchy
      description: Atlassian Copy Page Hierarchy
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: confluence-content-pages.copypagehierarchy
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.