monday-create-board
Create a new Monday.com board by specifying its name and kind (public, private, or shareable). Simplifies board setup for streamlined project management.
Instructions
Create a new Monday.com board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
board_kind | No | Kind of the Monday.com board to create (public, private, shareable). Default is public. | |
board_name | Yes | Name of the Monday.com board to create |
Input Schema (JSON Schema)
{
"properties": {
"board_kind": {
"description": "Kind of the Monday.com board to create (public, private, shareable). Default is public.",
"type": "string"
},
"board_name": {
"description": "Name of the Monday.com board to create",
"type": "string"
}
},
"required": [
"board_name"
],
"type": "object"
}