Skip to main content
Glama
kydycode

Enhanced Todoist MCP Server Extended

todoist_update_label

Modify an existing Todoist label by updating its name, color, favorite status, or order using the label ID.

Instructions

Update an existing label by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelIdYesThe ID of the label to update.
nameNoNew name for the label (optional).
colorNoNew color for the label (optional).
isFavoriteNoNew favorite status (optional).
orderNoNew order for the label (optional).

Implementation Reference

  • Executes the todoist_update_label tool: validates args with isUpdateLabelArgs, calls todoistClient.updateLabel(labelId, updateArgs), formats response with formatLabel.
    if (name === "todoist_update_label") { if (!isUpdateLabelArgs(args)) { return { content: [{ type: "text", text: "Invalid arguments for update_label" }], isError: true }; } try { const { labelId, ...updateArgs } = args; const updatedLabel = await todoistClient.updateLabel(labelId, updateArgs); return { content: [{ type: "text", text: `Label updated:\n${formatLabel(updatedLabel)}` }], isError: false }; } catch (error: any) { return { content: [{ type: "text", text: `Error updating label: ${error.message}` }], isError: true }; } }
  • Input schema and metadata definition for the todoist_update_label tool.
    const UPDATE_LABEL_TOOL: Tool = { name: "todoist_update_label", description: "Update an existing label by its ID.", inputSchema: { type: "object", properties: { labelId: { type: "string", description: "The ID of the label to update." }, name: { type: "string", description: "New name for the label (optional)." }, color: { type: "string", description: "New color for the label (optional)." }, isFavorite: { type: "boolean", description: "New favorite status (optional)." }, order: { type: "number", description: "New order for the label (optional)." } }, required: ["labelId"] } };
  • src/index.ts:1109-1114 (registration)
    Registers UPDATE_LABEL_TOOL in the array of tools advertised via ListToolsRequestSchema handler.
    CREATE_LABEL_TOOL, GET_LABEL_TOOL, GET_LABELS_TOOL, UPDATE_LABEL_TOOL, DELETE_LABEL_TOOL, // Comment tools
  • Type guard function to validate input arguments for the todoist_update_label tool.
    function isUpdateLabelArgs(args: unknown): args is { labelId: string; name?: string; color?: string; isFavorite?: boolean; order?: number; } { return ( typeof args === "object" && args !== null && "labelId" in args && typeof (args as { labelId: string }).labelId === "string" ); }
  • Helper function used to format the updated label details in the tool response.
    function formatLabel(label: any): string { return `- ${label.name} (ID: ${label.id})${label.color ? `\n Color: ${label.color}` : ''}${label.isFavorite ? `\n Favorite: Yes` : ''}${label.order ? `\n Order: ${label.order}`: ''}`; }

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/kydycode/todoist-mcp-server-ext'

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