atlas-mcp-server

by cyanheads
Verified

whiteboard_create

Create a new whiteboard workspace with optional initial data and schema validation. Can be linked to projects for organization.

Input Schema

NameRequiredDescriptionDefault
dataNoInitial JSON data (timestamps managed by server).
idYesUnique whiteboard identifier (non-empty).
projectIdNoOptional project ID to link to (must start with 'proj_').

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "data": { "description": "Initial JSON data (timestamps managed by server)." }, "id": { "description": "Unique whiteboard identifier (non-empty).", "minLength": 1, "type": "string" }, "projectId": { "description": "Optional project ID to link to (must start with 'proj_').", "type": "string" } }, "required": [ "id" ], "type": "object" }