ForgeRock · Capability

ForgeRock Identity Gateway API — Studio

ForgeRock Identity Gateway API — Studio. 2 operations. Lead operation: ForgeRock List studio routes. Self-contained Naftiko capability covering one Forgerock business surface.

Run with Naftiko ForgerockStudio

What You Can Do

GET
Liststudioroutes — ForgeRock List studio routes
/v1/openig/api/studio/routes
POST
Createstudioroute — ForgeRock Create a route via Studio
/v1/openig/api/studio/routes

MCP Tools

forgerock-list-studio-routes

ForgeRock List studio routes

read-only idempotent
forgerock-create-route-studio

ForgeRock Create a route via Studio

Capability Spec

identity-gateway-studio.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ForgeRock Identity Gateway API — Studio
  description: 'ForgeRock Identity Gateway API — Studio. 2 operations. Lead operation: ForgeRock List studio routes. Self-contained
    Naftiko capability covering one Forgerock business surface.'
  tags:
  - Forgerock
  - Studio
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FORGEROCK_API_KEY: FORGEROCK_API_KEY
capability:
  consumes:
  - type: http
    namespace: identity-gateway-studio
    baseUri: https://{deployment}/ig
    description: ForgeRock Identity Gateway API — Studio business capability. Self-contained, no shared references.
    resources:
    - name: openig-api-studio-routes
      path: /openig/api/studio/routes
      operations:
      - name: liststudioroutes
        method: GET
        description: ForgeRock List studio routes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createstudioroute
        method: POST
        description: ForgeRock Create a route via Studio
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.FORGEROCK_API_KEY}}'
  exposes:
  - type: rest
    namespace: identity-gateway-studio-rest
    port: 8080
    description: REST adapter for ForgeRock Identity Gateway API — Studio. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/openig/api/studio/routes
      name: openig-api-studio-routes
      description: REST surface for openig-api-studio-routes.
      operations:
      - method: GET
        name: liststudioroutes
        description: ForgeRock List studio routes
        call: identity-gateway-studio.liststudioroutes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createstudioroute
        description: ForgeRock Create a route via Studio
        call: identity-gateway-studio.createstudioroute
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-gateway-studio-mcp
    port: 9090
    transport: http
    description: MCP adapter for ForgeRock Identity Gateway API — Studio. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: forgerock-list-studio-routes
      description: ForgeRock List studio routes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-gateway-studio.liststudioroutes
      outputParameters:
      - type: object
        mapping: $.
    - name: forgerock-create-route-studio
      description: ForgeRock Create a route via Studio
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: identity-gateway-studio.createstudioroute
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.