honeycomb_query_create
Generate queries for datasets by specifying a dataset slug and query object with calculation, time range, and filters using the honeycomb_query_create
tool on the honeycomb-mcp-server.
Instructions
Create a new query for a dataset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug to create query for | |
query | Yes | Query object with calculation, time range, and filters |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug to create query for",
"type": "string"
},
"query": {
"description": "Query object with calculation, time range, and filters",
"type": "object"
}
},
"required": [
"datasetSlug",
"query"
],
"type": "object"
}