Microsoft Bookings · Capability

Microsoft Bookings API (Microsoft Graph) — Services

Microsoft Bookings API (Microsoft Graph) — Services. 5 operations. Lead operation: List services. Self-contained Naftiko capability covering one Microsoft Bookings business surface.

Run with Naftiko Microsoft BookingsServices

What You Can Do

GET
Listservices — List services
/v1/solutions/bookingbusinesses/{id}/services
POST
Createservice — Create service
/v1/solutions/bookingbusinesses/{id}/services
GET
Getservice — Get service
/v1/solutions/bookingbusinesses/{id}/services/{serviceid}
PATCH
Updateservice — Update service
/v1/solutions/bookingbusinesses/{id}/services/{serviceid}
DELETE
Deleteservice — Delete service
/v1/solutions/bookingbusinesses/{id}/services/{serviceid}

MCP Tools

list-services

List services

read-only idempotent
create-service

Create service

get-service

Get service

read-only idempotent
update-service

Update service

idempotent
delete-service

Delete service

idempotent

Capability Spec

microsoft-bookings-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Bookings API (Microsoft Graph) — Services
  description: 'Microsoft Bookings API (Microsoft Graph) — Services. 5 operations. Lead operation: List services. Self-contained
    Naftiko capability covering one Microsoft Bookings business surface.'
  tags:
  - Microsoft Bookings
  - Services
  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-services
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft Bookings API (Microsoft Graph) — Services business capability. Self-contained, no shared references.
    resources:
    - name: solutions-bookingBusinesses-id-services
      path: /solutions/bookingBusinesses/{id}/services
      operations:
      - name: listservices
        method: GET
        description: List services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservice
        method: POST
        description: Create service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: solutions-bookingBusinesses-id-services-serviceId
      path: /solutions/bookingBusinesses/{id}/services/{serviceId}
      operations:
      - name: getservice
        method: GET
        description: Get service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateservice
        method: PATCH
        description: Update service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteservice
        method: DELETE
        description: Delete service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_BOOKINGS_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-bookings-services-rest
    port: 8080
    description: REST adapter for Microsoft Bookings API (Microsoft Graph) — Services. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/solutions/bookingbusinesses/{id}/services
      name: solutions-bookingbusinesses-id-services
      description: REST surface for solutions-bookingBusinesses-id-services.
      operations:
      - method: GET
        name: listservices
        description: List services
        call: microsoft-bookings-services.listservices
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservice
        description: Create service
        call: microsoft-bookings-services.createservice
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/solutions/bookingbusinesses/{id}/services/{serviceid}
      name: solutions-bookingbusinesses-id-services-serviceid
      description: REST surface for solutions-bookingBusinesses-id-services-serviceId.
      operations:
      - method: GET
        name: getservice
        description: Get service
        call: microsoft-bookings-services.getservice
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateservice
        description: Update service
        call: microsoft-bookings-services.updateservice
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteservice
        description: Delete service
        call: microsoft-bookings-services.deleteservice
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-bookings-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Bookings API (Microsoft Graph) — Services. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-services
      description: List services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-bookings-services.listservices
      outputParameters:
      - type: object
        mapping: $.
    - name: create-service
      description: Create service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-bookings-services.createservice
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-service
      description: Get service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-bookings-services.getservice
      outputParameters:
      - type: object
        mapping: $.
    - name: update-service
      description: Update service
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-bookings-services.updateservice
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-service
      description: Delete service
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-bookings-services.deleteservice
      outputParameters:
      - type: object
        mapping: $.