Gravitee · Capability

Gravitee.io - Access Management API — Reporter

Gravitee.io - Access Management API — Reporter. 3 operations. Lead operation: List reporter plugins. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko GraviteeReporter

What You Can Do

GET
Listreporterplugins — List reporter plugins
/v1/platform/plugins/reporters
GET
Getreporter — Get a reporter plugin
/v1/platform/plugins/reporters/{reporter}
GET
Getreporterschema — Get a reporter plugin's schema
/v1/platform/plugins/reporters/{reporter}/schema

MCP Tools

list-reporter-plugins

List reporter plugins

read-only idempotent
get-reporter-plugin

Get a reporter plugin

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

Get a reporter plugin's schema

read-only idempotent

Capability Spec

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