create_space
Generate a new space in Dart MCP Server with customizable title, description, icon, color, and access settings. Ideal for organizing workspaces and managing team or user permissions efficiently.
Instructions
Create a new space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abrev | No | Short abbreviation for the space | |
accessible_by_team | No | Whether the space is accessible by the whole team | |
accessible_by_user_duids | No | List of user DUIDs who can access the space | |
color_hex | No | Color in hex format (e.g. #FF0000) | |
description | No | Description of the space | |
icon_kind | No | Kind of icon to use | None |
icon_name_or_emoji | No | Icon name or emoji character | |
sprint_mode | No | Sprint mode for the space | None |
sprint_name_fmt | No | Sprint name format | |
sprint_replicate_on_rollover | No | Whether to replicate sprints on rollover | |
title | Yes | Title 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"
}