Microsoft Windows 10 · Capability

Microsoft Windows 10 Windows Notifications API — Toast Notifications

Microsoft Windows 10 Windows Notifications API — Toast Notifications. 4 operations. Lead operation: Microsoft Windows 10 Create a toast notification. Self-contained Naftiko capability covering one Microsoft Windows 10 business surface.

Run with Naftiko Microsoft Windows 10Toast Notifications

What You Can Do

POST
Createtoastnotification — Microsoft Windows 10 Create a toast notification
/v1/notifications/toast
GET
Listtoastnotifications — Microsoft Windows 10 List active toast notifications
/v1/notifications/toast
GET
Gettoastnotification — Microsoft Windows 10 Get a toast notification by tag
/v1/notifications/toast/{notificationtag}
DELETE
Removetoastnotification — Microsoft Windows 10 Remove a toast notification
/v1/notifications/toast/{notificationtag}

MCP Tools

microsoft-windows-10-create-toast

Microsoft Windows 10 Create a toast notification

microsoft-windows-10-list-active

Microsoft Windows 10 List active toast notifications

read-only idempotent
microsoft-windows-10-get-toast

Microsoft Windows 10 Get a toast notification by tag

read-only idempotent
microsoft-windows-10-remove-toast

Microsoft Windows 10 Remove a toast notification

idempotent

Capability Spec

notifications-toast-notifications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Windows 10 Windows Notifications API — Toast Notifications
  description: 'Microsoft Windows 10 Windows Notifications API — Toast Notifications. 4 operations. Lead operation: Microsoft
    Windows 10 Create a toast notification. Self-contained Naftiko capability covering one Microsoft Windows 10 business surface.'
  tags:
  - Microsoft Windows 10
  - Toast Notifications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_WINDOWS_10_API_KEY: MICROSOFT_WINDOWS_10_API_KEY
capability:
  consumes:
  - type: http
    namespace: notifications-toast-notifications
    baseUri: https://api.windows.com
    description: Microsoft Windows 10 Windows Notifications API — Toast Notifications business capability. Self-contained,
      no shared references.
    resources:
    - name: notifications-toast
      path: /notifications/toast
      operations:
      - name: createtoastnotification
        method: POST
        description: Microsoft Windows 10 Create a toast notification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listtoastnotifications
        method: GET
        description: Microsoft Windows 10 List active toast notifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: notifications-toast-notificationTag
      path: /notifications/toast/{notificationTag}
      operations:
      - name: gettoastnotification
        method: GET
        description: Microsoft Windows 10 Get a toast notification by tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: notificationTag
          in: path
          type: string
          description: The notification tag identifier
          required: true
      - name: removetoastnotification
        method: DELETE
        description: Microsoft Windows 10 Remove a toast notification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: notificationTag
          in: path
          type: string
          description: The notification tag identifier
          required: true
  exposes:
  - type: rest
    namespace: notifications-toast-notifications-rest
    port: 8080
    description: REST adapter for Microsoft Windows 10 Windows Notifications API — Toast Notifications. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/notifications/toast
      name: notifications-toast
      description: REST surface for notifications-toast.
      operations:
      - method: POST
        name: createtoastnotification
        description: Microsoft Windows 10 Create a toast notification
        call: notifications-toast-notifications.createtoastnotification
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listtoastnotifications
        description: Microsoft Windows 10 List active toast notifications
        call: notifications-toast-notifications.listtoastnotifications
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/notifications/toast/{notificationtag}
      name: notifications-toast-notificationtag
      description: REST surface for notifications-toast-notificationTag.
      operations:
      - method: GET
        name: gettoastnotification
        description: Microsoft Windows 10 Get a toast notification by tag
        call: notifications-toast-notifications.gettoastnotification
        with:
          notificationTag: rest.notificationTag
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removetoastnotification
        description: Microsoft Windows 10 Remove a toast notification
        call: notifications-toast-notifications.removetoastnotification
        with:
          notificationTag: rest.notificationTag
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: notifications-toast-notifications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Windows 10 Windows Notifications API — Toast Notifications. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: microsoft-windows-10-create-toast
      description: Microsoft Windows 10 Create a toast notification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: notifications-toast-notifications.createtoastnotification
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-windows-10-list-active
      description: Microsoft Windows 10 List active toast notifications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: notifications-toast-notifications.listtoastnotifications
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-windows-10-get-toast
      description: Microsoft Windows 10 Get a toast notification by tag
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: notifications-toast-notifications.gettoastnotification
      with:
        notificationTag: tools.notificationTag
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-windows-10-remove-toast
      description: Microsoft Windows 10 Remove a toast notification
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: notifications-toast-notifications.removetoastnotification
      with:
        notificationTag: tools.notificationTag
      outputParameters:
      - type: object
        mapping: $.