productivity
Microsoft To Do MCP, CLI, and Lua Integration for AI Agents
Microsoft To Do integration docs for AI agents: MCP gateway setup, Microsoft To Do CLI commands, Lua API reference, credentials, and function schemas.
7 functions 5 read 2 write Manual OAuth token auth
Microsoft To Do for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
microsoft_todo- route_slug
microsoft-todo- package
microsoft-todo- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Microsoft To Do CLIHeadless setup and direct function calls. Microsoft To Do MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Microsoft To Do MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Microsoft To Do.
Claude Code Microsoft To Do MCP setup for Claude Code. Cursor Microsoft To Do MCP setup for Cursor. Codex Microsoft To Do MCP setup for Codex. OpenAI Agents Microsoft To Do MCP setup for OpenAI Agents SDK. Claude Agent SDK Microsoft To Do MCP setup for Claude Agent SDK. Vercel AI SDK Microsoft To Do MCP setup for Vercel AI SDK. LangChain Microsoft To Do MCP setup for LangChain. LangGraph Microsoft To Do MCP setup for LangGraph. CrewAI Microsoft To Do MCP setup for CrewAI. MCP clients Microsoft To Do MCP setup for Generic MCP Clients.
Microsoft To Do CLI Matrix
Use these pages for direct Microsoft To Do CLI workflows in scripts, CI, cron, and agent wrappers.
CI Microsoft To Do CLI for CI. Cron Jobs Microsoft To Do CLI for cron jobs. Shell Scripts Microsoft To Do CLI for shell scripts. Headless Automation Microsoft To Do CLI for headless automation. Coding Agents Microsoft To Do CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
microsoft_todo.todo_list_lists | Read read | 0 | List all Microsoft To Do task lists for the authenticated user. Returns the list ID, display name, and well-known name for each list. |
microsoft_todo.todo_get_list | Read read | 1 | Get a specific Microsoft To Do task list by its ID. Returns the list details including display name and well-known name. |
microsoft_todo.todo_create_list | Write write | 1 | Create a new Microsoft To Do task list. Provide a display name for the list. |
microsoft_todo.todo_list_tasks | Read read | 1 | List all tasks in a Microsoft To Do task list. Returns task titles, statuses, body content, and due dates. |
microsoft_todo.todo_get_task | Read read | 2 | Get a specific task from a Microsoft To Do task list by its ID. Returns full task details including title, body, status, due date, and importance. |
microsoft_todo.todo_create_task | Write write | 5 | Create a new task in a Microsoft To Do task list. Provide a title, and optionally a body and due date. |
microsoft_todo.todo_get_current_user | Read read | 0 | Get the authenticated Microsoft user profile. Returns display name, email, and other account details. Useful for verifying which account is connected. |