Atlassian · Capability

Atlassian Confluence Settings API — Themes

Atlassian Confluence Settings API — Themes. 3 operations. Lead operation: Atlassian Get Themes. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianThemes

What You Can Do

GET
Atlassiangetthemes — Atlassian Get Themes
/v1/wiki/rest/api/settings/theme
GET
Atlassiangetglobaltheme — Atlassian Get Global Theme
/v1/wiki/rest/api/settings/theme/selected
GET
Atlassiangettheme — Atlassian Get Theme
/v1/wiki/rest/api/settings/theme/{themekey}

MCP Tools

atlassian-get-themes

Atlassian Get Themes

read-only idempotent
atlassian-get-global-theme

Atlassian Get Global Theme

read-only idempotent
atlassian-get-theme

Atlassian Get Theme

read-only idempotent

Capability Spec

confluence-settings-themes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian Confluence Settings API — Themes
  description: 'Atlassian Confluence Settings API — Themes. 3 operations. Lead operation: Atlassian Get Themes. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Themes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: confluence-settings-themes
    baseUri: ''
    description: Atlassian Confluence Settings API — Themes business capability. Self-contained, no shared references.
    resources:
    - name: wiki-rest-api-settings-theme
      path: /wiki/rest/api/settings/theme
      operations:
      - name: atlassiangetthemes
        method: GET
        description: Atlassian Get Themes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: start
          in: query
          type: integer
          description: The starting index of the returned themes.
        - name: limit
          in: query
          type: integer
          description: The maximum number of themes to return per page.
    - name: wiki-rest-api-settings-theme-selected
      path: /wiki/rest/api/settings/theme/selected
      operations:
      - name: atlassiangetglobaltheme
        method: GET
        description: Atlassian Get Global Theme
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: wiki-rest-api-settings-theme-themeKey
      path: /wiki/rest/api/settings/theme/{themeKey}
      operations:
      - name: atlassiangettheme
        method: GET
        description: Atlassian Get Theme
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: themeKey
          in: path
          type: string
          description: The key of the theme to be returned.
          required: true
  exposes:
  - type: rest
    namespace: confluence-settings-themes-rest
    port: 8080
    description: REST adapter for Atlassian Confluence Settings API — Themes. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/wiki/rest/api/settings/theme
      name: wiki-rest-api-settings-theme
      description: REST surface for wiki-rest-api-settings-theme.
      operations:
      - method: GET
        name: atlassiangetthemes
        description: Atlassian Get Themes
        call: confluence-settings-themes.atlassiangetthemes
        with:
          start: rest.start
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/settings/theme/selected
      name: wiki-rest-api-settings-theme-selected
      description: REST surface for wiki-rest-api-settings-theme-selected.
      operations:
      - method: GET
        name: atlassiangetglobaltheme
        description: Atlassian Get Global Theme
        call: confluence-settings-themes.atlassiangetglobaltheme
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wiki/rest/api/settings/theme/{themekey}
      name: wiki-rest-api-settings-theme-themekey
      description: REST surface for wiki-rest-api-settings-theme-themeKey.
      operations:
      - method: GET
        name: atlassiangettheme
        description: Atlassian Get Theme
        call: confluence-settings-themes.atlassiangettheme
        with:
          themeKey: rest.themeKey
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: confluence-settings-themes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian Confluence Settings API — Themes. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: atlassian-get-themes
      description: Atlassian Get Themes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: confluence-settings-themes.atlassiangetthemes
      with:
        start: tools.start
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-global-theme
      description: Atlassian Get Global Theme
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: confluence-settings-themes.atlassiangetglobaltheme
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-theme
      description: Atlassian Get Theme
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: confluence-settings-themes.atlassiangettheme
      with:
        themeKey: tools.themeKey
      outputParameters:
      - type: object
        mapping: $.