Skip to main content
Glama

Todoist MCP Server

by dan-bailey

create_task

Add new tasks to Todoist with content, due dates, priorities, labels, and project organization to manage your to-do list effectively.

Instructions

Create a new task in Todoist.

Args: content: The task content/title description: Detailed description of the task project_id: Project ID to add the task to section_id: Section ID within the project parent_id: Parent task ID (for subtasks) labels: List of label names priority: Priority from 1 (normal) to 4 (urgent) due_string: Human readable due date (e.g., 'tomorrow', 'next Monday') due_date: ISO 8601 formatted due date

Input Schema

NameRequiredDescriptionDefault
contentYes
descriptionNo
project_idNo
section_idNo
parent_idNo
labelsNo
priorityNo
due_stringNo
due_dateNo

Input Schema (JSON Schema)

{ "properties": { "content": { "title": "Content", "type": "string" }, "description": { "default": "", "title": "Description", "type": "string" }, "due_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Due Date" }, "due_string": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Due String" }, "labels": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Labels" }, "parent_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Parent Id" }, "priority": { "default": 1, "title": "Priority", "type": "integer" }, "project_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Project Id" }, "section_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Section Id" } }, "required": [ "content" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dan-bailey/todoist-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server