add-task-to-any-project
Create and assign tasks to any project in Todoist using project_id and task content. Streamline task management with MCP Todoist's API integration for AI agents.
Instructions
Add task to a any Project in Todoist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content for the task | |
project_id | No | Project Id where the task needs to be added. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "Content for the task",
"type": "string"
},
"project_id": {
"description": "Project Id where the task needs to be added.",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}