honeycomb_datasets_create
Generate and manage new datasets by specifying a name and optional description, simplifying dataset creation within the honeycomb-mcp-server environment.
Instructions
Create a new dataset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the dataset | |
name | Yes | Name of the dataset |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the dataset",
"type": "string"
},
"name": {
"description": "Name of the dataset",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}