Skip to main content
Glama

Dart MCP Server

by its-dart

create_task

Create and manage tasks in Dart by specifying details like title, description, status, priority, assignees, tags, dates, and custom properties for efficient project organization.

Instructions

Create a new task in Dart. You can specify title, description, status, priority, size, dates, dartboard, assignees, tags, parent task, 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)
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
titleYesThe title of the task (required)

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" }, "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 (required)", "type": "string" } }, "required": [ "title" ], "type": "object" }
Install Server

Other Tools from Dart MCP Server

Related Tools

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