get_task
Pack: microsoft-todo · Endpoint: https://gateway.pipeworx.io/microsoft-todo/mcp
Get the full details of a single Microsoft To Do task by its list ID and task ID, including title, status, importance, full body/notes, due date, reminder time, created/completed times, and any checklist (sub-task) items. Use after list_tasks or find_due_tasks to read a to-do item in full.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
list_id | string | yes | The ID of the Microsoft To Do task list containing the task. |
task_id | string | yes | The ID of the task to retrieve (from a list or find result). |
Example call
curl -X POST https://gateway.pipeworx.io/microsoft-todo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_task","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"microsoft-todo": {
"url": "https://gateway.pipeworx.io/microsoft-todo/mcp"
}
}
}
See Getting Started for client-specific install steps.