ClickUp MCP Server

clickup_create_board

Create a new board in a ClickUp space

Input Schema

NameRequiredDescriptionDefault
contentNoBoard description or content
nameYesBoard name
space_idYesThe ID of the space to create the board in. The unique identifier for the resource in ClickUp.

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Board description or content", "type": "string" }, "name": { "description": "Board name", "type": "string" }, "space_id": { "description": "The ID of the space to create the board in. The unique identifier for the resource in ClickUp.", "type": "string" } }, "required": [ "space_id", "name" ], "type": "object" }