honeycomb_board_create
Generate custom boards in honeycomb-mcp-server by specifying a name, description, and query IDs for organized data visualization and analysis.
Instructions
Create a new board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the board | |
name | Yes | Name of the board | |
query_ids | No | Query IDs to include in the board |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the board",
"type": "string"
},
"name": {
"description": "Name of the board",
"type": "string"
},
"query_ids": {
"description": "Query IDs to include in the board",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}