remove_label
Remove a label from a task in FluentBoards project management to organize and categorize tasks effectively.
Instructions
Remove a label from a task
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | Yes | Board ID | |
| task_id | Yes | Task ID | |
| label_id | Yes | Label ID |
Implementation Reference
- src/tools/labels.ts:28-44 (registration)Registers the 'remove_label' MCP tool, including input schema validation and the handler function that removes a label from a task by making a DELETE API request to the specified endpoint.server.tool( "remove_label", "Remove a label from a task", { board_id: z.number().int().positive().describe("Board ID"), task_id: z.number().int().positive().describe("Task ID"), label_id: z.number().int().positive().describe("Label ID"), }, async (args) => { const { board_id, task_id, label_id } = args; const response = await api.delete( `/projects/${board_id}/tasks/${task_id}/labels/${label_id}` ); return formatResponse(response.data); } );