Red Hat Satellite · Capability

Red Hat Satellite REST API — Organizations

Red Hat Satellite REST API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained Naftiko capability covering one Red Hat Satellite business surface.

Run with Naftiko Red Hat SatelliteOrganizations

What You Can Do

GET
Listorganizations — List Organizations
/v1/api/v2/organizations
GET
Showorganization — Show an Organization
/v1/api/v2/organizations/{id}

MCP Tools

list-organizations

List Organizations

read-only idempotent
show-organization

Show an Organization

read-only idempotent

Capability Spec

red-hat-satellite-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Red Hat Satellite REST API — Organizations
  description: 'Red Hat Satellite REST API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained
    Naftiko capability covering one Red Hat Satellite business surface.'
  tags:
  - Red Hat Satellite
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RED_HAT_SATELLITE_API_KEY: RED_HAT_SATELLITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: red-hat-satellite-organizations
    baseUri: https://satellite.example.com
    description: Red Hat Satellite REST API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-organizations
      path: /api/v2/organizations
      operations:
      - name: listorganizations
        method: GET
        description: List Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v2-organizations-id
      path: /api/v2/organizations/{id}
      operations:
      - name: showorganization
        method: GET
        description: Show an Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: Organization identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.RED_HAT_SATELLITE_API_KEY}}'
  exposes:
  - type: rest
    namespace: red-hat-satellite-organizations-rest
    port: 8080
    description: REST adapter for Red Hat Satellite REST API — Organizations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v2/organizations
      name: api-v2-organizations
      description: REST surface for api-v2-organizations.
      operations:
      - method: GET
        name: listorganizations
        description: List Organizations
        call: red-hat-satellite-organizations.listorganizations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/organizations/{id}
      name: api-v2-organizations-id
      description: REST surface for api-v2-organizations-id.
      operations:
      - method: GET
        name: showorganization
        description: Show an Organization
        call: red-hat-satellite-organizations.showorganization
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: red-hat-satellite-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Red Hat Satellite REST API — Organizations. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-organizations
      description: List Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: red-hat-satellite-organizations.listorganizations
      outputParameters:
      - type: object
        mapping: $.
    - name: show-organization
      description: Show an Organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: red-hat-satellite-organizations.showorganization
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.