ForgeRock · Capability

ForgeRock Autonomous Identity API — Applications

ForgeRock Autonomous Identity API — Applications. 2 operations. Lead operation: ForgeRock List applications. Self-contained Naftiko capability covering one Forgerock business surface.

Run with Naftiko ForgerockApplications

What You Can Do

GET
Listapplications — ForgeRock List applications
/v1/api/applications
GET
Getapplication — ForgeRock Get an application
/v1/api/applications/{applicationid}

MCP Tools

forgerock-list-applications

ForgeRock List applications

read-only idempotent
forgerock-get-application

ForgeRock Get an application

read-only idempotent

Capability Spec

autonomous-identity-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ForgeRock Autonomous Identity API — Applications
  description: 'ForgeRock Autonomous Identity API — Applications. 2 operations. Lead operation: ForgeRock List applications.
    Self-contained Naftiko capability covering one Forgerock business surface.'
  tags:
  - Forgerock
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FORGEROCK_API_KEY: FORGEROCK_API_KEY
capability:
  consumes:
  - type: http
    namespace: autonomous-identity-applications
    baseUri: https://{deployment}/autoid
    description: ForgeRock Autonomous Identity API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: api-applications
      path: /api/applications
      operations:
      - name: listapplications
        method: GET
        description: ForgeRock List applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-applications-applicationId
      path: /api/applications/{applicationId}
      operations:
      - name: getapplication
        method: GET
        description: ForgeRock Get an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          description: The application identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.FORGEROCK_API_KEY}}'
  exposes:
  - type: rest
    namespace: autonomous-identity-applications-rest
    port: 8080
    description: REST adapter for ForgeRock Autonomous Identity API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/applications
      name: api-applications
      description: REST surface for api-applications.
      operations:
      - method: GET
        name: listapplications
        description: ForgeRock List applications
        call: autonomous-identity-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/applications/{applicationid}
      name: api-applications-applicationid
      description: REST surface for api-applications-applicationId.
      operations:
      - method: GET
        name: getapplication
        description: ForgeRock Get an application
        call: autonomous-identity-applications.getapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: autonomous-identity-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for ForgeRock Autonomous Identity API — Applications. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: forgerock-list-applications
      description: ForgeRock List applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: autonomous-identity-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: forgerock-get-application
      description: ForgeRock Get an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: autonomous-identity-applications.getapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.