{
  "name": "edit_task_title",
  "description": "Update the title of a task",
  "inputSchema": {
    "type": "object",
    "properties": {
      "taskId": {
        "type": "string",
        "description": "The ID of the task"
      },
      "title": {
        "type": "string",
        "description": "The new title"
      }
    },
    "required": ["taskId", "title"]
  }
}
