Azure Notification Hubs · Capability

Azure Notification Hubs REST API — Installations

Azure Notification Hubs REST API — Installations. 2 operations. Lead operation: NH Upsert installation. Self-contained Naftiko capability covering one Microsoft Azure Notification Hubs business surface.

Run with Naftiko Microsoft Azure Notification HubsInstallations

What You Can Do

PUT
Createorupdateinstallation — NH Upsert installation
/v1/{hub}/installations/{id}
DELETE
Deleteinstallation — NH Delete installation
/v1/{hub}/installations/{id}

MCP Tools

nh-upsert-installation

NH Upsert installation

idempotent
nh-delete-installation

NH Delete installation

idempotent

Capability Spec

microsoft-azure-notification-hubs-installations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure Notification Hubs REST API — Installations
  description: 'Azure Notification Hubs REST API — Installations. 2 operations. Lead operation: NH Upsert installation. Self-contained
    Naftiko capability covering one Microsoft Azure Notification Hubs business surface.'
  tags:
  - Microsoft Azure Notification Hubs
  - Installations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_NOTIFICATION_HUBS_API_KEY: MICROSOFT_AZURE_NOTIFICATION_HUBS_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-azure-notification-hubs-installations
    baseUri: https://{namespace}.servicebus.windows.net
    description: Azure Notification Hubs REST API — Installations business capability. Self-contained, no shared references.
    resources:
    - name: hub-installations-id
      path: /{hub}/installations/{id}
      operations:
      - name: createorupdateinstallation
        method: PUT
        description: NH Upsert installation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteinstallation
        method: DELETE
        description: NH Delete installation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.MICROSOFT_AZURE_NOTIFICATION_HUBS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: microsoft-azure-notification-hubs-installations-rest
    port: 8080
    description: REST adapter for Azure Notification Hubs REST API — Installations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/{hub}/installations/{id}
      name: hub-installations-id
      description: REST surface for hub-installations-id.
      operations:
      - method: PUT
        name: createorupdateinstallation
        description: NH Upsert installation
        call: microsoft-azure-notification-hubs-installations.createorupdateinstallation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteinstallation
        description: NH Delete installation
        call: microsoft-azure-notification-hubs-installations.deleteinstallation
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-azure-notification-hubs-installations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure Notification Hubs REST API — Installations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: nh-upsert-installation
      description: NH Upsert installation
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-azure-notification-hubs-installations.createorupdateinstallation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: nh-delete-installation
      description: NH Delete installation
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-azure-notification-hubs-installations.deleteinstallation
      outputParameters:
      - type: object
        mapping: $.