Gravitee · Capability

Gravitee.io - Access Management API — Notifier

Gravitee.io - Access Management API — Notifier. 3 operations. Lead operation: List all available notifier plugins. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko GraviteeNotifier

What You Can Do

GET
Listnotifiers — List all available notifier plugins
/v1/platform/plugins/notifiers
GET
Getnotifier — Get a notifier
/v1/platform/plugins/notifiers/{notifierid}
GET
Getnotifierschema — Get a notifier plugin's schema
/v1/platform/plugins/notifiers/{notifierid}/schema

MCP Tools

list-all-available-notifier-plugins

List all available notifier plugins

read-only idempotent
get-notifier

Get a notifier

read-only idempotent
get-notifier-plugin-s-schema

Get a notifier plugin's schema

read-only idempotent

Capability Spec

am-notifier.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gravitee.io - Access Management API — Notifier
  description: 'Gravitee.io - Access Management API — Notifier. 3 operations. Lead operation: List all available notifier
    plugins. Self-contained Naftiko capability covering one Gravitee business surface.'
  tags:
  - Gravitee
  - Notifier
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRAVITEE_API_KEY: GRAVITEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: am-notifier
    baseUri: ''
    description: Gravitee.io - Access Management API — Notifier business capability. Self-contained, no shared references.
    resources:
    - name: platform-plugins-notifiers
      path: /platform/plugins/notifiers
      operations:
      - name: listnotifiers
        method: GET
        description: List all available notifier plugins
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: expand
          in: query
          type: array
    - name: platform-plugins-notifiers-notifierId
      path: /platform/plugins/notifiers/{notifierId}
      operations:
      - name: getnotifier
        method: GET
        description: Get a notifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: notifierId
          in: path
          type: string
          required: true
    - name: platform-plugins-notifiers-notifierId-schema
      path: /platform/plugins/notifiers/{notifierId}/schema
      operations:
      - name: getnotifierschema
        method: GET
        description: Get a notifier plugin's schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: notifierId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.GRAVITEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: am-notifier-rest
    port: 8080
    description: REST adapter for Gravitee.io - Access Management API — Notifier. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/platform/plugins/notifiers
      name: platform-plugins-notifiers
      description: REST surface for platform-plugins-notifiers.
      operations:
      - method: GET
        name: listnotifiers
        description: List all available notifier plugins
        call: am-notifier.listnotifiers
        with:
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/platform/plugins/notifiers/{notifierid}
      name: platform-plugins-notifiers-notifierid
      description: REST surface for platform-plugins-notifiers-notifierId.
      operations:
      - method: GET
        name: getnotifier
        description: Get a notifier
        call: am-notifier.getnotifier
        with:
          notifierId: rest.notifierId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/platform/plugins/notifiers/{notifierid}/schema
      name: platform-plugins-notifiers-notifierid-schema
      description: REST surface for platform-plugins-notifiers-notifierId-schema.
      operations:
      - method: GET
        name: getnotifierschema
        description: Get a notifier plugin's schema
        call: am-notifier.getnotifierschema
        with:
          notifierId: rest.notifierId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: am-notifier-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gravitee.io - Access Management API — Notifier. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-all-available-notifier-plugins
      description: List all available notifier plugins
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-notifier.listnotifiers
      with:
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: get-notifier
      description: Get a notifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-notifier.getnotifier
      with:
        notifierId: tools.notifierId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-notifier-plugin-s-schema
      description: Get a notifier plugin's schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-notifier.getnotifierschema
      with:
        notifierId: tools.notifierId
      outputParameters:
      - type: object
        mapping: $.