honeycomb-mcp-server

by kajirita2002
Verified

honeycomb_marker_create

Create a new marker for a dataset

Input Schema

NameRequiredDescriptionDefault
datasetSlugYesDataset slug to create marker for, or 'all' for all datasets
end_timeNoEnd time for the marker (ISO format), optional for point-in-time markers
messageYesMessage for the marker
start_timeYesStart time for the marker (ISO format)
typeYesType of marker
urlNoURL associated with the marker

Input Schema (JSON Schema)

{ "properties": { "datasetSlug": { "description": "Dataset slug to create marker for, or 'all' for all datasets", "type": "string" }, "end_time": { "description": "End time for the marker (ISO format), optional for point-in-time markers", "type": "string" }, "message": { "description": "Message for the marker", "type": "string" }, "start_time": { "description": "Start time for the marker (ISO format)", "type": "string" }, "type": { "description": "Type of marker", "type": "string" }, "url": { "description": "URL associated with the marker", "type": "string" } }, "required": [ "datasetSlug", "message", "type", "start_time" ], "type": "object" }