create_card
Create new tasks in Focalboard boards by setting titles, properties, and column placement to organize work items effectively.
Instructions
Create a new card (task) in a board. You can set the title, properties, and column placement.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | The ID of the board to create the card in | |
| title | Yes | The title/name of the card | |
| properties | No | Property values for the card (e.g., {"Status": "To Do", "Priority": "High"}). Use property names, not IDs. |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "The ID of the board to create the card in",
"type": "string"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Property values for the card (e.g., {\"Status\": \"To Do\", \"Priority\": \"High\"}). Use property names, not IDs.",
"type": "object"
},
"title": {
"description": "The title/name of the card",
"type": "string"
}
},
"required": [
"boardId",
"title"
],
"type": "object"
}