mcpserver.lol
registry/whiteboard
Connection check verified live · 20h ago

whiteboard

Real-time collaborative whiteboard — AI agents and humans edit the same board live over MCP.

Tools 25
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 20h ago

Tools & capabilities

25 tools

Read from the running server on 20h ago.

add_image can modify data x*y*idwidth*authorheight* +4
Place a raster or SVG image on the board at (x, y) with explicit width/height in board pixels. `data_url` MUST be a `data:image/(png|jpeg|gif|webp|svg+xml);base64,...` string ≤ ~90…
add_link x*y*url*authorboard_id*access_key
Drop a URL capsule onto the board — rendered as a clickable pill showing the hostname. Use this instead of `add_text` when the node is just a link; the capsule styling signals clic…
add_text can modify data x*y*idcolorwidthauthor +5
Create a NEW text node, or update an existing one (pass the same `id` to overwrite content/position in place — preferred over creating a duplicate). Supports cnvs markup (Markdown-…
create_board lockmodeauthorcontenttemplateautolayout
Create a fresh board in ONE call — optionally pre-filled with content, auto-laid-out, and/or PIN-locked at create time. Mirrors the extended `POST /api/boards` REST body exactly (s…
create_column lanesortcolortitle*authorboard_id* +1
Add a kanban column (swimlane) to a 'todo' board. Generates and returns a stable column id. `sort` is a float ordering key (ascending); omit to default to 0. `lane` is an integer r…
create_task donename*sortauthorassigneeboard_id* +5
Create a task (card) in a column on a 'todo' board. Generates and returns a stable task id. `column_id` must reference an existing column (see `list_tasks`). `description` is free-…
create_tasks tasks*authorboard_id*access_key
Bulk-create multiple task cards in one call — far cheaper than calling `create_task` N times. Pass `tasks`: an array of task objects, each with `column_id` (required) + the same fi…
delete_column can modify data id*board_id*access_key
Delete a kanban column by id. Tasks in the column are removed with it. Get the id from `list_tasks`.
delete_task can modify data id*board_id*access_key
Delete a task (card) by id. Get the id from `list_tasks`.
draw_stroke can modify data idcolorauthorpoints*board_id*access_key
Draw a freehand stroke on the board. Use for arrows, underlines, connector lines, annotations, or simple shapes — a straight line needs two points, a rough circle wants ~20. Stroke…
erase can modify data id*kind*board_id*access_key
Delete a single item by id. `kind` MUST match the item type: 'text' for text nodes, 'line' for freehand strokes, 'image' for images — the wrong kind silently targets the wrong tabl…
export_tasks read-only formatboard_id*access_key
Export a 'todo' board's columns + tasks as a single text document. `format` is 'markdown' (a checklist grouped by column, the default) or 'csv' (one row per task with column/name/p…
get_board board_id*access_key
Full structured JSON state of a board: texts (id, x, y, content, color, width, postit, author), strokes (id, points, color, author), images (id, x, y, width, height, dataUrl, thumb…
get_preview read-only board_id*access_key
Compact schematic SVG render of the board (typically a few kB even for dense boards). Returns both an image/svg+xml content block (you can SEE it) and the raw SVG text. CALL THIS a…
list_tasks read-only board_id*access_key
Read the full kanban state of a 'todo' board: `{ mode, columns, tasks }`, both ordered by their `sort` key (ascending). Each task carries its hot fields (name, due_date, priority,…
move x*y*id*kindboard_id*access_key
Reposition an existing item to a new (x, y) without retyping its content. Works for every item kind: `text` and `link` set the top-left to (x, y); `line` translates every point so…
move_task id*sort*board_id*column_id*access_key
Move a task to a column at a given sort position — the kanban drag-and-drop primitive. `column_id` is the destination column and `sort` its float order key (ascending) within that…
open_board url_or_id*access_key
ALWAYS call this first when given a board URL or ID. Resolves the canonical board id and auto-creates the board row if it does not exist yet. Returns a summary (item counts, author…
query_tasks read-only doneoverdueassigneeboard_id*prioritydue_after +2
Read tasks from a 'todo' board with server-side filtering — handy for 'what's overdue?' / 'what's assigned to X?' without pulling the whole board. All filters are optional and AND…
set_board_mode can modify data mode*board_id*templateaccess_key
Choose whether this board is a freeform whiteboard ('draw', the default) or a kanban task board ('todo'). Mode is switchable WHENEVER the board is empty of real content: drawings (…
set_column_width width*board_id*access_key
Set the shared kanban column width in pixels for a 'todo' board (all columns share one width). Clamped to [200, 480]. Read the current value as `colWidth` from `list_tasks`.
set_lane can modify data lane*titleauthorboard_id*access_key
Set (or clear) the title of a kanban row (lane). Lanes group columns into horizontal swimlanes; a lane is identified by its integer `lane` index (the same index columns carry). Pas…
update_column can modify data id*lanesortcolortitleauthor +2
Rename, reorder, recolor or move an existing kanban column. Requires the column `id` (from `list_tasks`). Pass `title`, `sort`, `lane` and/or `color` to change them.
update_task can modify data id*donenamesortauthorassignee +6
Update an existing task by `id` (from `list_tasks`). Pass only the fields you want to change: `name`, `description`, `due_date`, `priority` ('H'|'M'|'L'), `assignee`, `done` (true…
wait_for_update read-only board_id*access_keytimeout_ms
Long-poll: blocks until the next edit lands on this board, then returns. WHEN TO CALL THIS: if your MCP client does NOT surface `notifications/resources/updated` events from `res…