Appmixer · Capability

Appmixer API — Apps

Appmixer API — Apps. 4 operations. Lead operation: Appmixer List apps. Self-contained Naftiko capability covering one Appmixer business surface.

Run with Naftiko AppmixerApps

What You Can Do

GET
Listapps — Appmixer List apps
/v1/apps
GET
Listcomponents — Appmixer List components
/v1/components
POST
Publishcomponent — Appmixer Publish a component
/v1/components
DELETE
Deletecomponent — Appmixer Delete a component
/v1/components/{componentid}

MCP Tools

appmixer-list-apps

Appmixer List apps

read-only idempotent
appmixer-list-components

Appmixer List components

read-only idempotent
appmixer-publish-component

Appmixer Publish a component

appmixer-delete-component

Appmixer Delete a component

idempotent

Capability Spec

appmixer-apps.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Appmixer API — Apps
  description: 'Appmixer API — Apps. 4 operations. Lead operation: Appmixer List apps. Self-contained Naftiko capability covering
    one Appmixer business surface.'
  tags:
  - Appmixer
  - Apps
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPMIXER_API_KEY: APPMIXER_API_KEY
capability:
  consumes:
  - type: http
    namespace: appmixer-apps
    baseUri: https://api.{tenant}.appmixer.cloud
    description: Appmixer API — Apps business capability. Self-contained, no shared references.
    resources:
    - name: apps
      path: /apps
      operations:
      - name: listapps
        method: GET
        description: Appmixer List apps
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: components
      path: /components
      operations:
      - name: listcomponents
        method: GET
        description: Appmixer List components
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: publishcomponent
        method: POST
        description: Appmixer Publish a component
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: components-componentId
      path: /components/{componentId}
      operations:
      - name: deletecomponent
        method: DELETE
        description: Appmixer Delete a component
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: componentId
          in: path
          type: string
          description: Component identifier (e.g. appmixer.myservice)
          required: true
    authentication:
      type: bearer
      token: '{{env.APPMIXER_API_KEY}}'
  exposes:
  - type: rest
    namespace: appmixer-apps-rest
    port: 8080
    description: REST adapter for Appmixer API — Apps. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/apps
      name: apps
      description: REST surface for apps.
      operations:
      - method: GET
        name: listapps
        description: Appmixer List apps
        call: appmixer-apps.listapps
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/components
      name: components
      description: REST surface for components.
      operations:
      - method: GET
        name: listcomponents
        description: Appmixer List components
        call: appmixer-apps.listcomponents
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: publishcomponent
        description: Appmixer Publish a component
        call: appmixer-apps.publishcomponent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/components/{componentid}
      name: components-componentid
      description: REST surface for components-componentId.
      operations:
      - method: DELETE
        name: deletecomponent
        description: Appmixer Delete a component
        call: appmixer-apps.deletecomponent
        with:
          componentId: rest.componentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: appmixer-apps-mcp
    port: 9090
    transport: http
    description: MCP adapter for Appmixer API — Apps. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: appmixer-list-apps
      description: Appmixer List apps
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appmixer-apps.listapps
      outputParameters:
      - type: object
        mapping: $.
    - name: appmixer-list-components
      description: Appmixer List components
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appmixer-apps.listcomponents
      outputParameters:
      - type: object
        mapping: $.
    - name: appmixer-publish-component
      description: Appmixer Publish a component
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: appmixer-apps.publishcomponent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: appmixer-delete-component
      description: Appmixer Delete a component
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: appmixer-apps.deletecomponent
      with:
        componentId: tools.componentId
      outputParameters:
      - type: object
        mapping: $.