microsoft-todo
SkillProductivityCreate, find, complete, and organize tasks and task lists in Microsoft To Do (Microsoft's to-do app), plus break tasks into checklist steps. Use when the user wants to capture a task, check their to-do list, mark something done, or manage their tasks/lists — even if they don't say "Microsoft To Do"
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the microsoft-todo skill
What this skill tells your AI
The instructions your AI receives, as published by zapier/connectors in apps/microsoft-todo/SKILL.md and read by ahel’s review.
Drive Microsoft To Do via Microsoft Graph with curl + jq. The user's OAuth
bearer token is in $MICROSOFT_TODO_TOKEN; every call needs
Authorization: Bearer $MICROSOFT_TODO_TOKEN. Base URL:
https://graph.microsoft.com/v1.0.
Failures are {"error":{"code","message"}} — show message verbatim. 401
means the token expired (re-install). 403/ErrorAccessDenied on a write means
the user only granted Tasks.Read → ask them to re-connect with read+write.
G="https://graph.microsoft.com/v1.0"; AUTH="Authorization: Bearer $MICROSOFT_TODO_TOKEN"
# Task lists
curl -sS -H "$AUTH" "$G/me/todo/lists" | jq '.value[] | {id, displayName, wellknownListName}'
Tasks
LIST="LIST_ID"
# Open tasks in a list (filter notStarted/inProgress; $top caps page size)
curl -sS -H "$AUTH" \
"$G/me/todo/lists/$LIST/tasks?\$filter=status ne 'completed'&\$top=50" \
| jq '.value[] | {id, title, status, due: .dueDateTime.dateTime}'
# Create (confirm first). dueDateTime/reminderDateTime are optional.
curl -sS -X POST -H "$AUTH" -H "Content-Type: application/json" \
-d '{"title":"Follow up with Alex","dueDateTime":{"dateTime":"2026-06-30T17:00:00","timeZone":"UTC"}}' \
"$G/me/todo/lists/$LIST/tasks" | jq '{id, title, status}'
# Complete: PATCH the task with {"status":"completed"}
curl -sS -X PATCH -H "$AUTH" -H "Content-Type: application/json" \
-d '{"status":"completed"}' "$G/me/todo/lists/$LIST/tasks/TASK_ID" | jq '{title, status}'
Gotchas
- OData params (
$filter,$top,$select) need the$escaped in the shell (\$filter) and URL-encoded spaces — quote the whole URL. wellknownListName: "defaultList"is the user's default "Tasks" list — a good fallback when they don't name a list.- Pagination via
@odata.nextLink; follow it for "all tasks".
Signals
- GitHub stars
- 166
- Forks
- 14
- Last commit
- Aug 2026
ahel review
S4info
community integration — published by zapier, not microsoft
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
microsoft-todo- Source
- github.com/zapier/connectors