Appmixer · Capability

Appmixer API — Data Stores

Appmixer API — Data Stores. 3 operations. Lead operation: Appmixer List data stores. Self-contained Naftiko capability covering one Appmixer business surface.

Run with Naftiko AppmixerData Stores

What You Can Do

GET
Listdatastores — Appmixer List data stores
/v1/data-stores
GET
Getdatastore — Appmixer Get a data store
/v1/data-stores/{storeid}
DELETE
Deletedatastore — Appmixer Delete a data store
/v1/data-stores/{storeid}

MCP Tools

appmixer-list-data-stores

Appmixer List data stores

read-only idempotent
appmixer-get-data-store

Appmixer Get a data store

read-only idempotent
appmixer-delete-data-store

Appmixer Delete a data store

idempotent

Capability Spec

appmixer-data-stores.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Appmixer API — Data Stores
  description: 'Appmixer API — Data Stores. 3 operations. Lead operation: Appmixer List data stores. Self-contained Naftiko
    capability covering one Appmixer business surface.'
  tags:
  - Appmixer
  - Data Stores
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPMIXER_API_KEY: APPMIXER_API_KEY
capability:
  consumes:
  - type: http
    namespace: appmixer-data-stores
    baseUri: https://api.{tenant}.appmixer.cloud
    description: Appmixer API — Data Stores business capability. Self-contained, no shared references.
    resources:
    - name: data-stores
      path: /data-stores
      operations:
      - name: listdatastores
        method: GET
        description: Appmixer List data stores
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: data-stores-storeId
      path: /data-stores/{storeId}
      operations:
      - name: getdatastore
        method: GET
        description: Appmixer Get a data store
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: storeId
          in: path
          type: string
          required: true
      - name: deletedatastore
        method: DELETE
        description: Appmixer Delete a data store
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: storeId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.APPMIXER_API_KEY}}'
  exposes:
  - type: rest
    namespace: appmixer-data-stores-rest
    port: 8080
    description: REST adapter for Appmixer API — Data Stores. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/data-stores
      name: data-stores
      description: REST surface for data-stores.
      operations:
      - method: GET
        name: listdatastores
        description: Appmixer List data stores
        call: appmixer-data-stores.listdatastores
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data-stores/{storeid}
      name: data-stores-storeid
      description: REST surface for data-stores-storeId.
      operations:
      - method: GET
        name: getdatastore
        description: Appmixer Get a data store
        call: appmixer-data-stores.getdatastore
        with:
          storeId: rest.storeId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedatastore
        description: Appmixer Delete a data store
        call: appmixer-data-stores.deletedatastore
        with:
          storeId: rest.storeId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: appmixer-data-stores-mcp
    port: 9090
    transport: http
    description: MCP adapter for Appmixer API — Data Stores. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: appmixer-list-data-stores
      description: Appmixer List data stores
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appmixer-data-stores.listdatastores
      outputParameters:
      - type: object
        mapping: $.
    - name: appmixer-get-data-store
      description: Appmixer Get a data store
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appmixer-data-stores.getdatastore
      with:
        storeId: tools.storeId
      outputParameters:
      - type: object
        mapping: $.
    - name: appmixer-delete-data-store
      description: Appmixer Delete a data store
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: appmixer-data-stores.deletedatastore
      with:
        storeId: tools.storeId
      outputParameters:
      - type: object
        mapping: $.