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.

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.

Agent Surfaces

Machine-Readable Metadata

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.