Available tools

Reference the Klaxoon MCP tools for server instructions, whiteboards, board items, and sticky color palettes.

Use these Klaxoon MCP tools through an MCP client to inspect whiteboards, create or update board items, manage sticky color palettes, and retrieve server instructions.

ℹ️

Use get_mcp_server_instructions to retrieve the board rules/best practices before editing, including layout, object types, and z-index.

Server instructions

ToolWhat it does
get_mcp_server_instructionsReturns the full Klaxoon board assistant instruction set (layout, object types, z-index, etc.).

Whiteboards

ToolWhat it does
list_whiteboardsLists whiteboards you can access. Supports search, pagination, and sorting.
get_whiteboard_infoReturns metadata for one board from a boardId or accessCode.
create_whiteboardCreates a board with a required title and an optional description.

Board items

Item types (type field): IDEA (sticky notes), TEXT, SHAPE, CONNECTOR.

⚠️
  • Before editing a board, use list_whiteboard_items to understand the current layout.
  • Calling delete_whiteboard_items permanently removes items.
ToolWhat it does
list_whiteboard_itemsLists items on a board. You can filter by item type, author, specific item IDs, and pagination.
create_whiteboard_itemsCreates up to 50 items per call. Each item includes a type and payload, and can use tmpId to link new items created together.
update_whiteboard_itemsUpdates up to 50 existing items per call by id.
delete_whiteboard_itemsDeletes up to 50 items by id on a board.

Bulk responses

Create, update, and delete operations return per-item statuses plus a summary. Treat non-success rows as errors, such as permissions, validation, or not-found failures.

Sticky color palette

ToolWhat it does
list_whiteboard_sticky_colorsLists the sticky colors available on a board.
create_whiteboard_sticky_colorAdds a palette color with a required hex value and an optional label.
update_whiteboard_sticky_colorUpdates a palette color by colorId.
delete_whiteboard_sticky_colorRemoves a palette color by colorId.

Important limits

  • Pagination: list endpoints use page / perPage where applicable, with a maximum perPage of 100.
  • Bulk cap: create_whiteboard_items, update_whiteboard_items, and delete_whiteboard_items support up to 50 items per call.
  • Permissions: MCP calls follow the same access rights as the signed-in Klaxoon user.

This page is a capability overview. For parameter-level detail, rely on your MCP client’s tool schema or generate OpenAPI or MCP docs from the same source as these tool definitions.