honeycomb_board_update
Modify board details in honeycomb-mcp-server by updating its name, description, or query IDs using the specified board ID for accurate data management.
Instructions
Update an existing board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Board ID to update | |
description | No | New description for the board | |
name | No | New name for the board | |
query_ids | No | New 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"
}