honeycomb-mcp-server

by kajirita2002
Verified

honeycomb_board_update

Update an existing board

Input Schema

NameRequiredDescriptionDefault
boardIdYesBoard ID to update
descriptionNoNew description for the board
nameNoNew name for the board
query_idsNoNew query IDs to include in the board

Input Schema (JSON Schema)

{ "properties": { "boardId": { "description": "Board ID to update", "type": "string" }, "description": { "description": "New description for the board", "type": "string" }, "name": { "description": "New name for the board", "type": "string" }, "query_ids": { "description": "New query IDs to include in the board", "items": { "type": "string" }, "type": "array" } }, "required": [ "boardId" ], "type": "object" }