productivity
Microsoft To Do MCP Integration for OpenAI Agents SDK
Connect Microsoft To Do to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Microsoft To Do to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Microsoft To Do MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-microsoft_todo": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=microsoft_todo",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=microsoft_todo --write=deny Why Use KosmoKrator Here
Expose only Microsoft To Do instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Microsoft To Do Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Microsoft To Do integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__microsoft_todo__todo_list_lists | microsoft_todo.todo_list_lists | Read | List all Microsoft To Do task lists for the authenticated user. Returns the list ID, display name, and well-known name for each list. |
integration__microsoft_todo__todo_get_list | microsoft_todo.todo_get_list | Read | Get a specific Microsoft To Do task list by its ID. Returns the list details including display name and well-known name. |
integration__microsoft_todo__todo_create_list | microsoft_todo.todo_create_list | Write | Create a new Microsoft To Do task list. Provide a display name for the list. |
integration__microsoft_todo__todo_list_tasks | microsoft_todo.todo_list_tasks | Read | List all tasks in a Microsoft To Do task list. Returns task titles, statuses, body content, and due dates. |
integration__microsoft_todo__todo_get_task | microsoft_todo.todo_get_task | Read | 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. |
integration__microsoft_todo__todo_create_task | microsoft_todo.todo_create_task | Write | Create a new task in a Microsoft To Do task list. Provide a title, and optionally a body and due date. |
integration__microsoft_todo__todo_get_current_user | microsoft_todo.todo_get_current_user | Read | Get the authenticated Microsoft user profile. Returns display name, email, and other account details. Useful for verifying which account is connected. |