Microsoft Azure · Capability

Microsoft Azure Face Client — Snapshots

Microsoft Azure Face Client — Snapshots. 6 operations. Lead operation: Microsoft Azure Post Snapshots. Self-contained Naftiko capability covering one Microsoft Azure business surface.

Run with Naftiko Microsoft AzureSnapshots

What You Can Do

POST
Microsoftazuresnapshottake — Microsoft Azure Post Snapshots
/v1/snapshots
GET
Microsoftazuresnapshotlist — Microsoft Azure Get Snapshots
/v1/snapshots
GET
Microsoftazuresnapshotget — Microsoft Azure Get Snapshots Snapshotid
/v1/snapshots/{snapshotid}
PATCH
Microsoftazuresnapshotupdate — Microsoft Azure Patch Snapshots Snapshotid
/v1/snapshots/{snapshotid}
DELETE
Microsoftazuresnapshotdelete — Microsoft Azure Delete Snapshots Snapshotid
/v1/snapshots/{snapshotid}
POST
Microsoftazuresnapshotapply — Microsoft Azure Post Snapshots Snapshotid Apply
/v1/snapshots/{snapshotid}/apply

MCP Tools

microsoft-azure-post-snapshots

Microsoft Azure Post Snapshots

microsoft-azure-get-snapshots

Microsoft Azure Get Snapshots

read-only idempotent
microsoft-azure-get-snapshots-snapshotid

Microsoft Azure Get Snapshots Snapshotid

read-only idempotent
microsoft-azure-patch-snapshots-snapshotid

Microsoft Azure Patch Snapshots Snapshotid

idempotent
microsoft-azure-delete-snapshots-snapshotid

Microsoft Azure Delete Snapshots Snapshotid

idempotent
microsoft-azure-post-snapshots-snapshotid

Microsoft Azure Post Snapshots Snapshotid Apply

Capability Spec

face-client-snapshots.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Face Client — Snapshots
  description: 'Microsoft Azure Face Client — Snapshots. 6 operations. Lead operation: Microsoft Azure Post Snapshots. Self-contained
    Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  - Snapshots
  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: face-client-snapshots
    baseUri: ''
    description: Microsoft Azure Face Client — Snapshots business capability. Self-contained, no shared references.
    resources:
    - name: snapshots
      path: /snapshots
      operations:
      - name: microsoftazuresnapshottake
        method: POST
        description: Microsoft Azure Post Snapshots
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: string
          description: Request body for taking a snapshot.
          required: true
      - name: microsoftazuresnapshotlist
        method: GET
        description: Microsoft Azure Get Snapshots
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: User specified object type as a search filter.
    - name: snapshots-snapshotId
      path: /snapshots/{snapshotId}
      operations:
      - name: microsoftazuresnapshotget
        method: GET
        description: Microsoft Azure Get Snapshots Snapshotid
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: microsoftazuresnapshotupdate
        method: PATCH
        description: Microsoft Azure Patch Snapshots Snapshotid
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: string
          description: Request body for updating a snapshot.
          required: true
      - name: microsoftazuresnapshotdelete
        method: DELETE
        description: Microsoft Azure Delete Snapshots Snapshotid
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: snapshots-snapshotId-apply
      path: /snapshots/{snapshotId}/apply
      operations:
      - name: microsoftazuresnapshotapply
        method: POST
        description: Microsoft Azure Post Snapshots Snapshotid Apply
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: string
          description: Request body for applying a snapshot.
          required: true
  exposes:
  - type: rest
    namespace: face-client-snapshots-rest
    port: 8080
    description: REST adapter for Microsoft Azure Face Client — Snapshots. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/snapshots
      name: snapshots
      description: REST surface for snapshots.
      operations:
      - method: POST
        name: microsoftazuresnapshottake
        description: Microsoft Azure Post Snapshots
        call: face-client-snapshots.microsoftazuresnapshottake
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: microsoftazuresnapshotlist
        description: Microsoft Azure Get Snapshots
        call: face-client-snapshots.microsoftazuresnapshotlist
        with:
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/snapshots/{snapshotid}
      name: snapshots-snapshotid
      description: REST surface for snapshots-snapshotId.
      operations:
      - method: GET
        name: microsoftazuresnapshotget
        description: Microsoft Azure Get Snapshots Snapshotid
        call: face-client-snapshots.microsoftazuresnapshotget
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: microsoftazuresnapshotupdate
        description: Microsoft Azure Patch Snapshots Snapshotid
        call: face-client-snapshots.microsoftazuresnapshotupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: microsoftazuresnapshotdelete
        description: Microsoft Azure Delete Snapshots Snapshotid
        call: face-client-snapshots.microsoftazuresnapshotdelete
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/snapshots/{snapshotid}/apply
      name: snapshots-snapshotid-apply
      description: REST surface for snapshots-snapshotId-apply.
      operations:
      - method: POST
        name: microsoftazuresnapshotapply
        description: Microsoft Azure Post Snapshots Snapshotid Apply
        call: face-client-snapshots.microsoftazuresnapshotapply
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: face-client-snapshots-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Face Client — Snapshots. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: microsoft-azure-post-snapshots
      description: Microsoft Azure Post Snapshots
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: face-client-snapshots.microsoftazuresnapshottake
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-get-snapshots
      description: Microsoft Azure Get Snapshots
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: face-client-snapshots.microsoftazuresnapshotlist
      with:
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-get-snapshots-snapshotid
      description: Microsoft Azure Get Snapshots Snapshotid
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: face-client-snapshots.microsoftazuresnapshotget
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-patch-snapshots-snapshotid
      description: Microsoft Azure Patch Snapshots Snapshotid
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: face-client-snapshots.microsoftazuresnapshotupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-delete-snapshots-snapshotid
      description: Microsoft Azure Delete Snapshots Snapshotid
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: face-client-snapshots.microsoftazuresnapshotdelete
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-post-snapshots-snapshotid
      description: Microsoft Azure Post Snapshots Snapshotid Apply
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: face-client-snapshots.microsoftazuresnapshotapply
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.