Atlassian · Capability

Atlassian Admin API — Organizations

Atlassian Admin API — Organizations. 2 operations. Lead operation: Atlassian Get Organizations. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianOrganizations

What You Can Do

GET
Getorganizations — Atlassian Get Organizations
/v1/v1/orgs
GET
Getorganizationbyid — Atlassian Get Organization by Id
/v1/v1/orgs/{orgid}

MCP Tools

atlassian-get-organizations

Atlassian Get Organizations

read-only idempotent
atlassian-get-organization-id

Atlassian Get Organization by Id

read-only idempotent

Capability Spec

admin-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian Admin API — Organizations
  description: 'Atlassian Admin API — Organizations. 2 operations. Lead operation: Atlassian Get Organizations. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-organizations
    baseUri: https://api.atlassian.com
    description: Atlassian Admin API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: v1-orgs
      path: /v1/orgs
      operations:
      - name: getorganizations
        method: GET
        description: Atlassian Get Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cursor
          in: query
          type: string
          description: Sets the starting point for paginated results. Use the value returned in the previous response to retrieve
            the next page.
    - name: v1-orgs-orgId
      path: /v1/orgs/{orgId}
      operations:
      - name: getorganizationbyid
        method: GET
        description: Atlassian Get Organization by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-organizations-rest
    port: 8080
    description: REST adapter for Atlassian Admin API — Organizations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/orgs
      name: v1-orgs
      description: REST surface for v1-orgs.
      operations:
      - method: GET
        name: getorganizations
        description: Atlassian Get Organizations
        call: admin-organizations.getorganizations
        with:
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/orgs/{orgid}
      name: v1-orgs-orgid
      description: REST surface for v1-orgs-orgId.
      operations:
      - method: GET
        name: getorganizationbyid
        description: Atlassian Get Organization by Id
        call: admin-organizations.getorganizationbyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian Admin API — Organizations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: atlassian-get-organizations
      description: Atlassian Get Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organizations.getorganizations
      with:
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-organization-id
      description: Atlassian Get Organization by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organizations.getorganizationbyid
      outputParameters:
      - type: object
        mapping: $.