APIIDA · Capability

APIIDA API Gateway Manager — Alarms

APIIDA API Gateway Manager — Alarms. 2 operations. Lead operation: APIIDA List Alarm Configurations. Self-contained Naftiko capability covering one Apiida business surface.

Run with Naftiko ApiidaAlarms

What You Can Do

GET
Listalarms — APIIDA List Alarm Configurations
/v1/alarms
POST
Createalarm — APIIDA Create an Alarm
/v1/alarms

MCP Tools

apiida-list-alarm-configurations

APIIDA List Alarm Configurations

read-only idempotent
apiida-create-alarm

APIIDA Create an Alarm

Capability Spec

api-gateway-manager-alarms.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: APIIDA API Gateway Manager — Alarms
  description: 'APIIDA API Gateway Manager — Alarms. 2 operations. Lead operation: APIIDA List Alarm Configurations. Self-contained
    Naftiko capability covering one Apiida business surface.'
  tags:
  - Apiida
  - Alarms
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIIDA_API_KEY: APIIDA_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-gateway-manager-alarms
    baseUri: https://{tenant}.backend.apiida.io
    description: APIIDA API Gateway Manager — Alarms business capability. Self-contained, no shared references.
    resources:
    - name: alarms
      path: /alarms
      operations:
      - name: listalarms
        method: GET
        description: APIIDA List Alarm Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createalarm
        method: POST
        description: APIIDA Create an Alarm
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.APIIDA_API_KEY}}'
  exposes:
  - type: rest
    namespace: api-gateway-manager-alarms-rest
    port: 8080
    description: REST adapter for APIIDA API Gateway Manager — Alarms. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/alarms
      name: alarms
      description: REST surface for alarms.
      operations:
      - method: GET
        name: listalarms
        description: APIIDA List Alarm Configurations
        call: api-gateway-manager-alarms.listalarms
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createalarm
        description: APIIDA Create an Alarm
        call: api-gateway-manager-alarms.createalarm
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-gateway-manager-alarms-mcp
    port: 9090
    transport: http
    description: MCP adapter for APIIDA API Gateway Manager — Alarms. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apiida-list-alarm-configurations
      description: APIIDA List Alarm Configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-gateway-manager-alarms.listalarms
      outputParameters:
      - type: object
        mapping: $.
    - name: apiida-create-alarm
      description: APIIDA Create an Alarm
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-gateway-manager-alarms.createalarm
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.