Zitadel · Capability

Zitadel Management API — Applications

Zitadel Management API — Applications. 5 operations. Lead operation: Zitadel List Applications. Self-contained Naftiko capability covering one Zitadel business surface.

Run with Naftiko ZitadelApplications

What You Can Do

POST
Listapps — Zitadel List Applications
/v1/management/v1/projects/{projectid}/apps/search
POST
Createapiapp — Zitadel Create API Application
/v1/management/v1/projects/{projectid}/apps/api
POST
Createoidcapp — Zitadel Create OIDC Application
/v1/management/v1/projects/{projectid}/apps/oidc
GET
Getappbyid — Zitadel Get Application by ID
/v1/management/v1/projects/{projectid}/apps/{appid}
DELETE
Removeapp — Zitadel Remove Application
/v1/management/v1/projects/{projectid}/apps/{appid}

MCP Tools

zitadel-list-applications

Zitadel List Applications

read-only
zitadel-create-api-application

Zitadel Create API Application

zitadel-create-oidc-application

Zitadel Create OIDC Application

zitadel-get-application-id

Zitadel Get Application by ID

read-only idempotent
zitadel-remove-application

Zitadel Remove Application

idempotent

Capability Spec

management-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zitadel Management API — Applications
  description: 'Zitadel Management API — Applications. 5 operations. Lead operation: Zitadel List Applications. Self-contained
    Naftiko capability covering one Zitadel business surface.'
  tags:
  - Zitadel
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZITADEL_API_KEY: ZITADEL_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-applications
    baseUri: https://{instance}.zitadel.cloud
    description: Zitadel Management API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: management-v1-projects-projectId-apps-_search
      path: /management/v1/projects/{projectId}/apps/_search
      operations:
      - name: listapps
        method: POST
        description: Zitadel List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: management-v1-projects-projectId-apps-api
      path: /management/v1/projects/{projectId}/apps/api
      operations:
      - name: createapiapp
        method: POST
        description: Zitadel Create API Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: management-v1-projects-projectId-apps-oidc
      path: /management/v1/projects/{projectId}/apps/oidc
      operations:
      - name: createoidcapp
        method: POST
        description: Zitadel Create OIDC Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: management-v1-projects-projectId-apps-appId
      path: /management/v1/projects/{projectId}/apps/{appId}
      operations:
      - name: getappbyid
        method: GET
        description: Zitadel Get Application by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: removeapp
        method: DELETE
        description: Zitadel Remove Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ZITADEL_API_KEY}}'
  exposes:
  - type: rest
    namespace: management-applications-rest
    port: 8080
    description: REST adapter for Zitadel Management API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/management/v1/projects/{projectid}/apps/search
      name: management-v1-projects-projectid-apps-search
      description: REST surface for management-v1-projects-projectId-apps-_search.
      operations:
      - method: POST
        name: listapps
        description: Zitadel List Applications
        call: management-applications.listapps
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/projects/{projectid}/apps/api
      name: management-v1-projects-projectid-apps-api
      description: REST surface for management-v1-projects-projectId-apps-api.
      operations:
      - method: POST
        name: createapiapp
        description: Zitadel Create API Application
        call: management-applications.createapiapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/projects/{projectid}/apps/oidc
      name: management-v1-projects-projectid-apps-oidc
      description: REST surface for management-v1-projects-projectId-apps-oidc.
      operations:
      - method: POST
        name: createoidcapp
        description: Zitadel Create OIDC Application
        call: management-applications.createoidcapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/projects/{projectid}/apps/{appid}
      name: management-v1-projects-projectid-apps-appid
      description: REST surface for management-v1-projects-projectId-apps-appId.
      operations:
      - method: GET
        name: getappbyid
        description: Zitadel Get Application by ID
        call: management-applications.getappbyid
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removeapp
        description: Zitadel Remove Application
        call: management-applications.removeapp
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zitadel Management API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: zitadel-list-applications
      description: Zitadel List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: management-applications.listapps
      outputParameters:
      - type: object
        mapping: $.
    - name: zitadel-create-api-application
      description: Zitadel Create API Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-applications.createapiapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: zitadel-create-oidc-application
      description: Zitadel Create OIDC Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-applications.createoidcapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: zitadel-get-application-id
      description: Zitadel Get Application by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-applications.getappbyid
      outputParameters:
      - type: object
        mapping: $.
    - name: zitadel-remove-application
      description: Zitadel Remove Application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: management-applications.removeapp
      outputParameters:
      - type: object
        mapping: $.