add_todo
Add a new todo item to a markdown file. The tool accepts the todo text as input, enabling AI assistants to manage task lists efficiently.
Instructions
Add a new todo item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The todo item text |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"text": {
"description": "The todo item text",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}