todo_create
Create a new task list with a title and optional description using the MCP TODO Checklist Server for organized task management and tracking.
Instructions
Cria uma nova lista de tarefas
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Descrição da lista (opcional) | |
title | Yes | Título da lista |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Descrição da lista (opcional)",
"type": "string"
},
"title": {
"description": "Título da lista",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}