todoist_list_tasks
Pack: todoist · Endpoint: https://gateway.pipeworx.io/todoist/mcp
List active (incomplete) tasks / to-do items from Todoist. Optionally filter by a project id, or by a Todoist filter query (a powerful query language, e.g. “today | overdue”, “p1 & #Work”, “no date”). Returns each task’s id, content, description, project id, priority, due date/datetime, labels, and web URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | string | no | Optional project id to restrict tasks to a single Todoist project (from todoist_list_projects). |
filter | string | no | Optional Todoist filter query to select tasks, e.g. “today | overdue”, “p1”, “#Work & no date”, “7 days”. See Todoist’s filter query language. |
Example call
curl -X POST https://gateway.pipeworx.io/todoist/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"todoist_list_tasks","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"todoist": {
"url": "https://gateway.pipeworx.io/todoist/mcp"
}
}
}
See Getting Started for client-specific install steps.