Microsoft Bookings · Capability

Microsoft Bookings API (Microsoft Graph) — Customers

Microsoft Bookings API (Microsoft Graph) — Customers. 2 operations. Lead operation: List customers. Self-contained Naftiko capability covering one Microsoft Bookings business surface.

Run with Naftiko Microsoft BookingsCustomers

What You Can Do

GET
Listcustomers — List customers
/v1/solutions/bookingbusinesses/{id}/customers
POST
Createcustomer — Create customer
/v1/solutions/bookingbusinesses/{id}/customers

MCP Tools

list-customers

List customers

read-only idempotent
create-customer

Create customer

Capability Spec

microsoft-bookings-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Bookings API (Microsoft Graph) — Customers
  description: 'Microsoft Bookings API (Microsoft Graph) — Customers. 2 operations. Lead operation: List customers. Self-contained
    Naftiko capability covering one Microsoft Bookings business surface.'
  tags:
  - Microsoft Bookings
  - Customers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_BOOKINGS_API_KEY: MICROSOFT_BOOKINGS_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-bookings-customers
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft Bookings API (Microsoft Graph) — Customers business capability. Self-contained, no shared references.
    resources:
    - name: solutions-bookingBusinesses-id-customers
      path: /solutions/bookingBusinesses/{id}/customers
      operations:
      - name: listcustomers
        method: GET
        description: List customers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcustomer
        method: POST
        description: Create customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_BOOKINGS_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-bookings-customers-rest
    port: 8080
    description: REST adapter for Microsoft Bookings API (Microsoft Graph) — Customers. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/solutions/bookingbusinesses/{id}/customers
      name: solutions-bookingbusinesses-id-customers
      description: REST surface for solutions-bookingBusinesses-id-customers.
      operations:
      - method: GET
        name: listcustomers
        description: List customers
        call: microsoft-bookings-customers.listcustomers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomer
        description: Create customer
        call: microsoft-bookings-customers.createcustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-bookings-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Bookings API (Microsoft Graph) — Customers. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-customers
      description: List customers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-bookings-customers.listcustomers
      outputParameters:
      - type: object
        mapping: $.
    - name: create-customer
      description: Create customer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-bookings-customers.createcustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.