create_task
Generate tasks in AI Note by specifying content, due date, importance, and category. Enables task management through natural language integration with Claude Desktop.
Instructions
Create a new task in AI Note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_id | No | Category ID | |
content | Yes | Task content | |
due_date | No | Due date in ISO format | |
is_important | No | Mark task as important |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"description": "Category ID",
"type": "string"
},
"content": {
"description": "Task content",
"type": "string"
},
"due_date": {
"description": "Due date in ISO format",
"type": "string"
},
"is_important": {
"description": "Mark task as important",
"type": "boolean"
}
},
"required": [
"content"
],
"type": "object"
}