honeycomb_marker_update
Update existing markers by modifying start/end times, messages, types, or URLs in the honeycomb-mcp-server dataset. Requires dataset slug and marker ID for precise adjustments.
Instructions
Update an existing marker
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug the marker belongs to, or 'all' | |
end_time | No | New end time for the marker (ISO format) | |
markerId | Yes | Marker ID to update | |
message | No | New message for the marker | |
start_time | No | New start time for the marker (ISO format) | |
type | No | New type for the marker | |
url | No | New 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"
}