add-task-to-project
Add a task to a specified project in Todoist using project ID and task content, enabling streamlined task management through MCP server integration.
Instructions
Add task to a specific 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"
}