Apollo Config · Capability

Apollo Config Open API — Apps

Apollo Config Open API — Apps. 2 operations. Lead operation: List all apps. Self-contained Naftiko capability covering one Apollo Config business surface.

Run with Naftiko Apollo ConfigApps

What You Can Do

GET
Listapps — List all apps
/v1/openapi/v1/apps
GET
Getapp — Get app info
/v1/openapi/v1/apps/{appid}

MCP Tools

list-all-apps

List all apps

read-only idempotent
get-app-info

Get app info

read-only idempotent

Capability Spec

apollo-open-apps.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apollo Config Open API — Apps
  description: 'Apollo Config Open API — Apps. 2 operations. Lead operation: List all apps. Self-contained Naftiko capability
    covering one Apollo Config business surface.'
  tags:
  - Apollo Config
  - Apps
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APOLLO_CONFIG_API_KEY: APOLLO_CONFIG_API_KEY
capability:
  consumes:
  - type: http
    namespace: apollo-open-apps
    baseUri: http://localhost:8070
    description: Apollo Config Open API — Apps business capability. Self-contained, no shared references.
    resources:
    - name: openapi-v1-apps
      path: /openapi/v1/apps
      operations:
      - name: listapps
        method: GET
        description: List all apps
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: openapi-v1-apps-appId
      path: /openapi/v1/apps/{appId}
      operations:
      - name: getapp
        method: GET
        description: Get app info
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.APOLLO_CONFIG_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: apollo-open-apps-rest
    port: 8080
    description: REST adapter for Apollo Config Open API — Apps. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/openapi/v1/apps
      name: openapi-v1-apps
      description: REST surface for openapi-v1-apps.
      operations:
      - method: GET
        name: listapps
        description: List all apps
        call: apollo-open-apps.listapps
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/openapi/v1/apps/{appid}
      name: openapi-v1-apps-appid
      description: REST surface for openapi-v1-apps-appId.
      operations:
      - method: GET
        name: getapp
        description: Get app info
        call: apollo-open-apps.getapp
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apollo-open-apps-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apollo Config Open API — Apps. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-all-apps
      description: List all apps
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apollo-open-apps.listapps
      outputParameters:
      - type: object
        mapping: $.
    - name: get-app-info
      description: Get app info
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apollo-open-apps.getapp
      outputParameters:
      - type: object
        mapping: $.