Microsoft Graph Identity API — Applications

Microsoft Graph Identity API — Applications. 5 operations. Lead operation: List Applications. Self-contained Naftiko capability covering one Microsoft Azure Active Directory business surface.

Run with Naftiko Microsoft Azure Active DirectoryApplications

What You Can Do

GET
Listapplications — List Applications
/v1/applications
POST
Createapplication — Create Application
/v1/applications
GET
Getapplication — Get Application
/v1/applications/{application-id}
PATCH
Updateapplication — Update Application
/v1/applications/{application-id}
DELETE
Deleteapplication — Delete Application
/v1/applications/{application-id}

MCP Tools

list-applications

List Applications

read-only idempotent
create-application

Create Application

get-application

Get Application

read-only idempotent
update-application

Update Application

idempotent
delete-application

Delete Application

idempotent

Capability Spec

microsoft-graph-identity-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Graph Identity API — Applications
  description: 'Microsoft Graph Identity API — Applications. 5 operations. Lead operation: List Applications. Self-contained
    Naftiko capability covering one Microsoft Azure Active Directory business surface.'
  tags:
  - Microsoft Azure Active Directory
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_ACTIVE_DIRECTORY_API_KEY: MICROSOFT_AZURE_ACTIVE_DIRECTORY_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-graph-identity-applications
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft Graph Identity API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplication
        method: POST
        description: Create Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: applications-application-id
      path: /applications/{application-id}
      operations:
      - name: getapplication
        method: GET
        description: Get Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateapplication
        method: PATCH
        description: Update Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteapplication
        method: DELETE
        description: Delete Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_ACTIVE_DIRECTORY_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-graph-identity-applications-rest
    port: 8080
    description: REST adapter for Microsoft Graph Identity API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: listapplications
        description: List Applications
        call: microsoft-graph-identity-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Create Application
        call: microsoft-graph-identity-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{application-id}
      name: applications-application-id
      description: REST surface for applications-application-id.
      operations:
      - method: GET
        name: getapplication
        description: Get Application
        call: microsoft-graph-identity-applications.getapplication
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateapplication
        description: Update Application
        call: microsoft-graph-identity-applications.updateapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteapplication
        description: Delete Application
        call: microsoft-graph-identity-applications.deleteapplication
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-graph-identity-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Graph Identity API — Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-graph-identity-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: create-application
      description: Create Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-graph-identity-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application
      description: Get Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-graph-identity-applications.getapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: update-application
      description: Update Application
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-graph-identity-applications.updateapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-application
      description: Delete Application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-graph-identity-applications.deleteapplication
      outputParameters:
      - type: object
        mapping: $.