atlas-mcp-server

by cyanheads
Verified

whiteboard_update

Update whiteboard data by merging or replacing content. Supports partial updates to specific fields or complete data replacement.

Input Schema

NameRequiredDescriptionDefault
dataNoJSON data to store (for partial updates, provide only changed fields).
idYesWhiteboard ID to update.
mergeNotrue: merge with existing data, false: replace all data.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "data": { "description": "JSON data to store (for partial updates, provide only changed fields)." }, "id": { "description": "Whiteboard ID to update.", "minLength": 1, "type": "string" }, "merge": { "default": true, "description": "true: merge with existing data, false: replace all data.", "type": "boolean" } }, "required": [ "id" ], "type": "object" }