get_todo
Retrieve a specific task by its unique ID using the tool on Todo List MCP Server. Input the task's UUID to access its details efficiently.
Instructions
Get a specific todo by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | UUID of the todo to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "UUID of the todo to retrieve",
"format": "uuid",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}