honeycomb_query_get
Retrieve specific query details by providing the dataset slug and query ID from the honeycomb-mcp-server. Simplify query information access for targeted datasets.
Instructions
Get information about a specific query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug the query belongs to | |
queryId | Yes | Query ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug the query belongs to",
"type": "string"
},
"queryId": {
"description": "Query ID to retrieve",
"type": "string"
}
},
"required": [
"datasetSlug",
"queryId"
],
"type": "object"
}