list_tasks
Pack: microsoft-todo · Endpoint: https://gateway.pipeworx.io/microsoft-todo/mcp
List the tasks in a Microsoft To Do list. Returns compact task summaries (title, status, importance, due date, created/completed times, and a body preview). Optionally filter by status. Use to browse a user’s to-do list and see what tasks or reminders it contains.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
list_id | string | yes | The ID of the Microsoft To Do task list to read (from list_task_lists). |
top | number | no | Maximum number of tasks to return (default 50, max 100). |
status | string | no | Optional filter restricting results to tasks with this status. |
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":"list_tasks","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.