Gravitee · Capability

Gravitee.io - Access Management API — Identity Provider

Gravitee.io - Access Management API — Identity Provider. 3 operations. Lead operation: List identity provider plugins. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko GraviteeIdentity Provider

What You Can Do

GET
Listidentityproviders2 — List identity provider plugins
/v1/platform/plugins/identities
GET
Getidentityproviderplugin — Get an identity provider
/v1/platform/plugins/identities/{identity}
GET
Getidentityproviderpluginschema — Get an identity provider plugin's schema
/v1/platform/plugins/identities/{identity}/schema

MCP Tools

list-identity-provider-plugins

List identity provider plugins

read-only idempotent
get-identity-provider

Get an identity provider

read-only idempotent
get-identity-provider-plugin-s-schema

Get an identity provider plugin's schema

read-only idempotent

Capability Spec

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