Microsoft to Do · Capability

Microsoft To Do API (Microsoft Graph) — ChecklistItems

Microsoft To Do API (Microsoft Graph) — ChecklistItems. 5 operations. Lead operation: List checklist items. Self-contained Naftiko capability covering one Microsoft To Do business surface.

Run with Naftiko Microsoft To DoChecklistItems

What You Can Do

GET
Listchecklistitems — List checklist items
/v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems
POST
Createchecklistitem — Create checklist item
/v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems
GET
Getchecklistitem — Get checklist item
/v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems/{checklistitemid}
PATCH
Updatechecklistitem — Update checklist item
/v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems/{checklistitemid}
DELETE
Deletechecklistitem — Delete checklist item
/v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems/{checklistitemid}

MCP Tools

list-checklist-items

List checklist items

read-only idempotent
create-checklist-item

Create checklist item

read-only
get-checklist-item

Get checklist item

read-only idempotent
update-checklist-item

Update checklist item

idempotent
delete-checklist-item

Delete checklist item

idempotent

Capability Spec

microsoft-to-do-checklistitems.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft To Do API (Microsoft Graph) — ChecklistItems
  description: 'Microsoft To Do API (Microsoft Graph) — ChecklistItems. 5 operations. Lead operation: List checklist items.
    Self-contained Naftiko capability covering one Microsoft To Do business surface.'
  tags:
  - Microsoft To Do
  - ChecklistItems
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_TO_DO_API_KEY: MICROSOFT_TO_DO_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-to-do-checklistitems
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft To Do API (Microsoft Graph) — ChecklistItems business capability. Self-contained, no shared references.
    resources:
    - name: me-todo-lists-todoTaskListId-tasks-todoTaskId-checklistItems
      path: /me/todo/lists/{todoTaskListId}/tasks/{todoTaskId}/checklistItems
      operations:
      - name: listchecklistitems
        method: GET
        description: List checklist items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createchecklistitem
        method: POST
        description: Create checklist item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: me-todo-lists-todoTaskListId-tasks-todoTaskId-checklistItems-checklistItemId
      path: /me/todo/lists/{todoTaskListId}/tasks/{todoTaskId}/checklistItems/{checklistItemId}
      operations:
      - name: getchecklistitem
        method: GET
        description: Get checklist item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatechecklistitem
        method: PATCH
        description: Update checklist item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletechecklistitem
        method: DELETE
        description: Delete checklist item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_TO_DO_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-to-do-checklistitems-rest
    port: 8080
    description: REST adapter for Microsoft To Do API (Microsoft Graph) — ChecklistItems. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems
      name: me-todo-lists-todotasklistid-tasks-todotaskid-checklistitems
      description: REST surface for me-todo-lists-todoTaskListId-tasks-todoTaskId-checklistItems.
      operations:
      - method: GET
        name: listchecklistitems
        description: List checklist items
        call: microsoft-to-do-checklistitems.listchecklistitems
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createchecklistitem
        description: Create checklist item
        call: microsoft-to-do-checklistitems.createchecklistitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/me/todo/lists/{todotasklistid}/tasks/{todotaskid}/checklistitems/{checklistitemid}
      name: me-todo-lists-todotasklistid-tasks-todotaskid-checklistitems-checklistitemid
      description: REST surface for me-todo-lists-todoTaskListId-tasks-todoTaskId-checklistItems-checklistItemId.
      operations:
      - method: GET
        name: getchecklistitem
        description: Get checklist item
        call: microsoft-to-do-checklistitems.getchecklistitem
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatechecklistitem
        description: Update checklist item
        call: microsoft-to-do-checklistitems.updatechecklistitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletechecklistitem
        description: Delete checklist item
        call: microsoft-to-do-checklistitems.deletechecklistitem
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-to-do-checklistitems-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft To Do API (Microsoft Graph) — ChecklistItems. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-checklist-items
      description: List checklist items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-to-do-checklistitems.listchecklistitems
      outputParameters:
      - type: object
        mapping: $.
    - name: create-checklist-item
      description: Create checklist item
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: microsoft-to-do-checklistitems.createchecklistitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-checklist-item
      description: Get checklist item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-to-do-checklistitems.getchecklistitem
      outputParameters:
      - type: object
        mapping: $.
    - name: update-checklist-item
      description: Update checklist item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-to-do-checklistitems.updatechecklistitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-checklist-item
      description: Delete checklist item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-to-do-checklistitems.deletechecklistitem
      outputParameters:
      - type: object
        mapping: $.