create_todo_interactive
Create new todo items through guided prompts, allowing you to set titles, descriptions, and completion status for task management.
Instructions
Create a new todo item with interactive prompts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| authToken | No | Authentication token from Kinde (optional if saved) | |
| completed | No | Completion status of the todo | |
| description | No | Optional description of the todo item | |
| title | No | Title of the todo item |
Input Schema (JSON Schema)
{
"properties": {
"authToken": {
"description": "Authentication token from Kinde (optional if saved)",
"type": "string"
},
"completed": {
"description": "Completion status of the todo",
"type": "boolean"
},
"description": {
"description": "Optional description of the todo item",
"type": "string"
},
"title": {
"description": "Title of the todo item",
"type": "string"
}
},
"type": "object"
}