todoist_get_task
Pack: todoist · Endpoint: https://gateway.pipeworx.io/todoist/mcp
Get the full details of a single Todoist task / to-do item by its id, including content, description, project id, section id, priority, due date/datetime, labels, web URL, and creation time. Use after todoist_list_tasks to inspect one task.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
task_id | string | yes | The id of the Todoist task to retrieve (from a task list result). |
Example call
Arguments
{
"task_id": "4017395133"
}
curl
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_get_task","arguments":{"task_id":"4017395133"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('todoist_get_task', {
"task_id": "4017395133"
});
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.