Gravitee · Capability

Gravitee.io APIM Management API — Applications

Gravitee.io APIM Management API — Applications. 3 operations. Lead operation: List Applications. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko GraviteeApplications

What You Can Do

GET
Listapplications — List Applications
/v1/environments/{envid}/applications
POST
Createapplication — Create an Application
/v1/environments/{envid}/applications
GET
Getapplication — Get an Application by Identifier
/v1/environments/{envid}/applications/{applicationid}

MCP Tools

list-applications

List Applications

read-only idempotent
create-application

Create an Application

get-application-identifier

Get an Application by Identifier

read-only idempotent

Capability Spec

apim-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gravitee.io APIM Management API — Applications
  description: 'Gravitee.io APIM Management API — Applications. 3 operations. Lead operation: List Applications. Self-contained
    Naftiko capability covering one Gravitee business surface.'
  tags:
  - Gravitee
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRAVITEE_API_KEY: GRAVITEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: apim-applications
    baseUri: https://{host}/management/v2
    description: Gravitee.io APIM Management API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: environments-envId-applications
      path: /environments/{envId}/applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplication
        method: POST
        description: Create an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: environments-envId-applications-applicationId
      path: /environments/{envId}/applications/{applicationId}
      operations:
      - name: getapplication
        method: GET
        description: Get an Application by Identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.GRAVITEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: apim-applications-rest
    port: 8080
    description: REST adapter for Gravitee.io APIM Management API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/environments/{envid}/applications
      name: environments-envid-applications
      description: REST surface for environments-envId-applications.
      operations:
      - method: GET
        name: listapplications
        description: List Applications
        call: apim-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Create an Application
        call: apim-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environments/{envid}/applications/{applicationid}
      name: environments-envid-applications-applicationid
      description: REST surface for environments-envId-applications-applicationId.
      operations:
      - method: GET
        name: getapplication
        description: Get an Application by Identifier
        call: apim-applications.getapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apim-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gravitee.io APIM Management API — Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apim-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: create-application
      description: Create an Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: apim-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application-identifier
      description: Get an Application by Identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apim-applications.getapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.