Microsoft Azure · Capability

Microsoft Azure Operator Connect — Consent

Microsoft Azure Operator Connect — Consent. 3 operations. Lead operation: Microsoft Azure Get A List Of All Consents With Operators For Current User. Self-contained Naftiko capability covering one Microsoft Azure business surface.

Run with Naftiko Microsoft AzureConsent

What You Can Do

GET
Microsoftazuregetconsents — Microsoft Azure Get A List Of All Consents With Operators For Current User
/v1/operatorconnect/consents
GET
Microsoftazuregetconsent — Microsoft Azure Get Single Consent With Operator For Current User
/v1/operatorconnect/consents/{operatorid}
PATCH
Microsoftazurecreateorupdateconsent — Microsoft Azure Create New Or Update Existing Consent With Operator For Current User
/v1/operatorconnect/consents/{operatorid}

MCP Tools

microsoft-azure-get-list-all

Microsoft Azure Get A List Of All Consents With Operators For Current User

read-only idempotent
microsoft-azure-get-single-consent

Microsoft Azure Get Single Consent With Operator For Current User

read-only idempotent
microsoft-azure-create-new-update

Microsoft Azure Create New Or Update Existing Consent With Operator For Current User

idempotent

Capability Spec

operator-connect-consent.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Operator Connect — Consent
  description: 'Microsoft Azure Operator Connect — Consent. 3 operations. Lead operation: Microsoft Azure Get A List Of All
    Consents With Operators For Current User. Self-contained Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  - Consent
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_API_KEY: MICROSOFT_AZURE_API_KEY
capability:
  consumes:
  - type: http
    namespace: operator-connect-consent
    baseUri: ''
    description: Microsoft Azure Operator Connect — Consent business capability. Self-contained, no shared references.
    resources:
    - name: operatorconnect-consents
      path: /operatorconnect/consents
      operations:
      - name: microsoftazuregetconsents
        method: GET
        description: Microsoft Azure Get A List Of All Consents With Operators For Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skip
          in: query
          type: integer
          description: An optional parameter for how many entries to skip, for pagination purposes. The default value is 0.
        - name: top
          in: query
          type: integer
          description: An optional parameter for how many entries to return, for pagination purposes. The default will return
            the entire list.
        - name: api-version
          in: query
          type: string
          description: Version of API
          required: true
    - name: operatorconnect-consents-operatorId
      path: /operatorconnect/consents/{operatorId}
      operations:
      - name: microsoftazuregetconsent
        method: GET
        description: Microsoft Azure Get Single Consent With Operator For Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: operatorId
          in: path
          type: string
          description: The id of Operator with who user has signed consent
          required: true
        - name: api-version
          in: query
          type: string
          description: Version of API
          required: true
      - name: microsoftazurecreateorupdateconsent
        method: PATCH
        description: Microsoft Azure Create New Or Update Existing Consent With Operator For Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: api-version
          in: query
          type: string
          description: Version of API
          required: true
        - name: operatorId
          in: path
          type: string
          description: The id of the Operator with who user wants to create new or update existing consent
          required: true
        - name: body
          in: body
          type: string
          description: The request to send to create new or update existing consent with an operator
          required: true
  exposes:
  - type: rest
    namespace: operator-connect-consent-rest
    port: 8080
    description: REST adapter for Microsoft Azure Operator Connect — Consent. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/operatorconnect/consents
      name: operatorconnect-consents
      description: REST surface for operatorconnect-consents.
      operations:
      - method: GET
        name: microsoftazuregetconsents
        description: Microsoft Azure Get A List Of All Consents With Operators For Current User
        call: operator-connect-consent.microsoftazuregetconsents
        with:
          skip: rest.skip
          top: rest.top
          api-version: rest.api-version
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/operatorconnect/consents/{operatorid}
      name: operatorconnect-consents-operatorid
      description: REST surface for operatorconnect-consents-operatorId.
      operations:
      - method: GET
        name: microsoftazuregetconsent
        description: Microsoft Azure Get Single Consent With Operator For Current User
        call: operator-connect-consent.microsoftazuregetconsent
        with:
          operatorId: rest.operatorId
          api-version: rest.api-version
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: microsoftazurecreateorupdateconsent
        description: Microsoft Azure Create New Or Update Existing Consent With Operator For Current User
        call: operator-connect-consent.microsoftazurecreateorupdateconsent
        with:
          api-version: rest.api-version
          operatorId: rest.operatorId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: operator-connect-consent-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Operator Connect — Consent. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: microsoft-azure-get-list-all
      description: Microsoft Azure Get A List Of All Consents With Operators For Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: operator-connect-consent.microsoftazuregetconsents
      with:
        skip: tools.skip
        top: tools.top
        api-version: tools.api-version
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-get-single-consent
      description: Microsoft Azure Get Single Consent With Operator For Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: operator-connect-consent.microsoftazuregetconsent
      with:
        operatorId: tools.operatorId
        api-version: tools.api-version
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-create-new-update
      description: Microsoft Azure Create New Or Update Existing Consent With Operator For Current User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: operator-connect-consent.microsoftazurecreateorupdateconsent
      with:
        api-version: tools.api-version
        operatorId: tools.operatorId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.