honeycomb-mcp-server

by kajirita2002
Verified

honeycomb_marker_update

Update an existing marker

Input Schema

NameRequiredDescriptionDefault
datasetSlugYesDataset slug the marker belongs to, or 'all'
end_timeNoNew end time for the marker (ISO format)
markerIdYesMarker ID to update
messageNoNew message for the marker
start_timeNoNew start time for the marker (ISO format)
typeNoNew type for the marker
urlNoNew URL associated with the marker

Input Schema (JSON Schema)

{ "properties": { "datasetSlug": { "description": "Dataset slug the marker belongs to, or 'all'", "type": "string" }, "end_time": { "description": "New end time for the marker (ISO format)", "type": "string" }, "markerId": { "description": "Marker ID to update", "type": "string" }, "message": { "description": "New message for the marker", "type": "string" }, "start_time": { "description": "New start time for the marker (ISO format)", "type": "string" }, "type": { "description": "New type for the marker", "type": "string" }, "url": { "description": "New URL associated with the marker", "type": "string" } }, "required": [ "datasetSlug", "markerId" ], "type": "object" }