Dart MCP Server

create_space

Create a new space

Input Schema

NameRequiredDescriptionDefault
abrevNoShort abbreviation for the space
accessible_by_teamNoWhether the space is accessible by the whole team
accessible_by_user_duidsNoList of user DUIDs who can access the space
color_hexNoColor in hex format (e.g. #FF0000)
descriptionNoDescription of the space
icon_kindNoKind of icon to useNone
icon_name_or_emojiNoIcon name or emoji character
sprint_modeNoSprint mode for the spaceNone
sprint_name_fmtNoSprint name format
sprint_replicate_on_rolloverNoWhether to replicate sprints on rollover
titleYesTitle of the space

Input Schema (JSON Schema)

{ "properties": { "abrev": { "description": "Short abbreviation for the space", "type": "string" }, "accessible_by_team": { "default": true, "description": "Whether the space is accessible by the whole team", "type": "boolean" }, "accessible_by_user_duids": { "description": "List of user DUIDs who can access the space", "items": { "type": "string" }, "type": "array" }, "color_hex": { "description": "Color in hex format (e.g. #FF0000)", "type": "string" }, "description": { "description": "Description of the space", "type": "string" }, "icon_kind": { "default": "None", "description": "Kind of icon to use", "enum": [ "None", "Icon", "Emoji" ], "type": "string" }, "icon_name_or_emoji": { "description": "Icon name or emoji character", "type": "string" }, "sprint_mode": { "default": "None", "description": "Sprint mode for the space", "enum": [ "None", "ANBA" ], "type": "string" }, "sprint_name_fmt": { "description": "Sprint name format", "type": "string" }, "sprint_replicate_on_rollover": { "default": false, "description": "Whether to replicate sprints on rollover", "type": "boolean" }, "title": { "description": "Title of the space", "type": "string" } }, "required": [ "title" ], "type": "object" }