Gravitee · Capability

Gravitee.io - Access Management API — entrypoints

Gravitee.io - Access Management API — entrypoints. 5 operations. Lead operation: List entrypoints. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko Graviteeentrypoints

What You Can Do

GET
Listentrypoints — List entrypoints
/v1/organizations/{organizationid}/entrypoints
POST
Createentrypoint — Create a entrypoint
/v1/organizations/{organizationid}/entrypoints
GET
Getentrypoint — Get a sharding entrypoint
/v1/organizations/{organizationid}/entrypoints/{entrypointid}
PUT
Updateentrypoint — Update the sharding entrypoint
/v1/organizations/{organizationid}/entrypoints/{entrypointid}
DELETE
Deleteentrypoint — Delete the sharding entrypoint
/v1/organizations/{organizationid}/entrypoints/{entrypointid}

MCP Tools

list-entrypoints

List entrypoints

read-only idempotent
create-entrypoint

Create a entrypoint

get-sharding-entrypoint

Get a sharding entrypoint

read-only idempotent
update-sharding-entrypoint

Update the sharding entrypoint

idempotent
delete-sharding-entrypoint

Delete the sharding entrypoint

idempotent

Capability Spec

am-entrypoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gravitee.io - Access Management API — entrypoints
  description: 'Gravitee.io - Access Management API — entrypoints. 5 operations. Lead operation: List entrypoints. Self-contained
    Naftiko capability covering one Gravitee business surface.'
  tags:
  - Gravitee
  - entrypoints
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRAVITEE_API_KEY: GRAVITEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: am-entrypoints
    baseUri: ''
    description: Gravitee.io - Access Management API — entrypoints business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organizationId-entrypoints
      path: /organizations/{organizationId}/entrypoints
      operations:
      - name: listentrypoints
        method: GET
        description: List entrypoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
      - name: createentrypoint
        method: POST
        description: Create a entrypoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-organizationId-entrypoints-entrypointId
      path: /organizations/{organizationId}/entrypoints/{entrypointId}
      operations:
      - name: getentrypoint
        method: GET
        description: Get a sharding entrypoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: entrypointId
          in: path
          type: string
          required: true
      - name: updateentrypoint
        method: PUT
        description: Update the sharding entrypoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: entrypointId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteentrypoint
        method: DELETE
        description: Delete the sharding entrypoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: entrypointId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.GRAVITEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: am-entrypoints-rest
    port: 8080
    description: REST adapter for Gravitee.io - Access Management API — entrypoints. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/entrypoints
      name: organizations-organizationid-entrypoints
      description: REST surface for organizations-organizationId-entrypoints.
      operations:
      - method: GET
        name: listentrypoints
        description: List entrypoints
        call: am-entrypoints.listentrypoints
        with:
          organizationId: rest.organizationId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createentrypoint
        description: Create a entrypoint
        call: am-entrypoints.createentrypoint
        with:
          organizationId: rest.organizationId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organizationid}/entrypoints/{entrypointid}
      name: organizations-organizationid-entrypoints-entrypointid
      description: REST surface for organizations-organizationId-entrypoints-entrypointId.
      operations:
      - method: GET
        name: getentrypoint
        description: Get a sharding entrypoint
        call: am-entrypoints.getentrypoint
        with:
          organizationId: rest.organizationId
          entrypointId: rest.entrypointId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateentrypoint
        description: Update the sharding entrypoint
        call: am-entrypoints.updateentrypoint
        with:
          organizationId: rest.organizationId
          entrypointId: rest.entrypointId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteentrypoint
        description: Delete the sharding entrypoint
        call: am-entrypoints.deleteentrypoint
        with:
          organizationId: rest.organizationId
          entrypointId: rest.entrypointId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: am-entrypoints-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gravitee.io - Access Management API — entrypoints. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-entrypoints
      description: List entrypoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-entrypoints.listentrypoints
      with:
        organizationId: tools.organizationId
      outputParameters:
      - type: object
        mapping: $.
    - name: create-entrypoint
      description: Create a entrypoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: am-entrypoints.createentrypoint
      with:
        organizationId: tools.organizationId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-sharding-entrypoint
      description: Get a sharding entrypoint
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-entrypoints.getentrypoint
      with:
        organizationId: tools.organizationId
        entrypointId: tools.entrypointId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-sharding-entrypoint
      description: Update the sharding entrypoint
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: am-entrypoints.updateentrypoint
      with:
        organizationId: tools.organizationId
        entrypointId: tools.entrypointId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-sharding-entrypoint
      description: Delete the sharding entrypoint
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: am-entrypoints.deleteentrypoint
      with:
        organizationId: tools.organizationId
        entrypointId: tools.entrypointId
      outputParameters:
      - type: object
        mapping: $.