{
  "name": "append_task_notes",
  "description": "Append notes to a task",
  "inputSchema": {
    "type": "object",
    "properties": {
      "taskId": {
        "type": "string",
        "description": "The ID of the task"
      },
      "notes": {
        "type": "string",
        "description": "The notes to append"
      }
    },
    "required": ["taskId", "notes"]
  }
}
