Skip to main content
Glama

Dart MCP Server

by its-dart

update_task

Modify an existing task’s properties such as title, description, status, priority, dates, assignees, tags, and custom fields using its unique ID on the Dart MCP Server.

Instructions

Update an existing task. You can modify any of its properties including title, description, status, priority, dates, assignees, tags, and custom properties.

Input Schema

NameRequiredDescriptionDefault
assigneeNoSingle assignee name or email (if workspace doesn't allow multiple assignees)
assigneesNoArray of assignee names or emails (if workspace allows multiple assignees)
customPropertiesNoCustom properties to apply to the task. Use the property names from the config. Examples: { 'customCheckboxProperty': true, 'customTextProperty': 'Some text', 'customNumberProperty': 5, 'customSelectProperty': 'Option Name', 'customDatesProperty': '2025-05-10', 'customDatesPropertyWithRange': ['2025-05-01', '2025-05-30'], 'customMultiselectProperty': ['option1', 'option2'], 'customUserProperty': 'user@example.com', 'customMultipleUserProperty': ['user1@example.com', 'user2@example.com'], 'customTimeTrackingProperty': '1:30:00' }
dartboardNoThe title of the dartboard (project or list of tasks)
descriptionNoA longer description of the task, which can include markdown formatting
dueAtNoThe due date in ISO format (should be at 9:00am in user's timezone)
idYesThe 12-character alphanumeric ID of the task
parentIdNoThe ID of the parent task
priorityNoThe priority (Critical, High, Medium, or Low)
sizeNoThe size which represents the amount of work needed
startAtNoThe start date in ISO format (should be at 9:00am in user's timezone)
statusNoThe status from the list of available statuses
tagsNoArray of tags to apply to the task
titleNoThe title of the task

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "Single assignee name or email (if workspace doesn't allow multiple assignees)", "type": "string" }, "assignees": { "description": "Array of assignee names or emails (if workspace allows multiple assignees)", "items": { "type": "string" }, "type": "array" }, "customProperties": { "additionalProperties": { "oneOf": [ { "title": "CustomPropertyCheckbox", "type": "boolean" }, { "items": { "type": [ "string", "null" ] }, "title": "CustomPropertyDatesRange", "type": [ "array", "null" ] }, { "title": "CustomPropertyDatesSingle", "type": [ "string", "null" ] }, { "items": { "type": "string" }, "title": "CustomPropertyMultiselect", "type": "array" }, { "title": "CustomPropertyNumber", "type": [ "number", "null" ] }, { "title": "CustomPropertySelect", "type": [ "string", "null" ] }, { "title": "CustomPropertyStatus", "type": "string" }, { "title": "CustomPropertyText", "type": "string" }, { "description": "Duration in HH:MM:SS format", "pattern": "^[0-9]+:[0-5][0-9]:[0-5][0-9]$", "title": "CustomPropertyTimeTracking", "type": "string" }, { "items": { "type": "string" }, "title": "CustomPropertyUserMultiple", "type": "array" }, { "title": "CustomPropertyUserSingle", "type": [ "string", "null" ] } ] }, "description": "Custom properties to apply to the task. Use the property names from the config. Examples: { 'customCheckboxProperty': true, 'customTextProperty': 'Some text', 'customNumberProperty': 5, 'customSelectProperty': 'Option Name', 'customDatesProperty': '2025-05-10', 'customDatesPropertyWithRange': ['2025-05-01', '2025-05-30'], 'customMultiselectProperty': ['option1', 'option2'], 'customUserProperty': 'user@example.com', 'customMultipleUserProperty': ['user1@example.com', 'user2@example.com'], 'customTimeTrackingProperty': '1:30:00' }", "type": "object" }, "dartboard": { "description": "The title of the dartboard (project or list of tasks)", "type": "string" }, "description": { "description": "A longer description of the task, which can include markdown formatting", "type": "string" }, "dueAt": { "description": "The due date in ISO format (should be at 9:00am in user's timezone)", "type": "string" }, "id": { "description": "The 12-character alphanumeric ID of the task", "pattern": "^[a-zA-Z0-9]{12}$", "type": "string" }, "parentId": { "description": "The ID of the parent task", "type": "string" }, "priority": { "description": "The priority (Critical, High, Medium, or Low)", "type": "string" }, "size": { "description": "The size which represents the amount of work needed", "type": [ "string", "number", "null" ] }, "startAt": { "description": "The start date in ISO format (should be at 9:00am in user's timezone)", "type": "string" }, "status": { "description": "The status from the list of available statuses", "type": "string" }, "tags": { "description": "Array of tags to apply to the task", "items": { "type": "string" }, "type": "array" }, "title": { "description": "The title of the task", "type": "string" } }, "required": [ "id" ], "type": "object" }

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/its-dart/dart-mcp-server'

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