todo_add
Add new tasks to a checklist with titles, priorities, due dates, and tags for organized task management on the MCP TODO Checklist Server.
Instructions
Adiciona uma nova tarefa à lista
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dueDate | No | Data de vencimento (YYYY-MM-DD) | |
| listTitle | Yes | Título da lista | |
| priority | No | Prioridade da tarefa | |
| tags | No | Tags da tarefa | |
| taskTitle | Yes | Título da tarefa |
Input Schema (JSON Schema)
{
"properties": {
"dueDate": {
"description": "Data de vencimento (YYYY-MM-DD)",
"type": "string"
},
"listTitle": {
"description": "Título da lista",
"type": "string"
},
"priority": {
"description": "Prioridade da tarefa",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"tags": {
"description": "Tags da tarefa",
"items": {
"type": "string"
},
"type": "array"
},
"taskTitle": {
"description": "Título da tarefa",
"type": "string"
}
},
"required": [
"listTitle",
"taskTitle"
],
"type": "object"
}