Skip to main content
Glama

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
NameRequiredDescriptionDefault
board_idYesBoard ID
task_idYesTask ID
label_idYesLabel ID

Implementation Reference

  • 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); } );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danieliser/fluent-boards-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server