KosmoKrator

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_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

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.

Microsoft To Do CLI Matrix

Use these pages for direct Microsoft To Do CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.