Seq MCP Server

get-events

Retrieve and analyze a list of event filtered by parameters. Use this tool when you need to:

  • Investigate events that are being logged in the SEQ server
  • Details of each event is a structured log and can provide usefull information
  • Events could be information, error, debug, or critical
  • Analyze error patterns and frequencies

Input Schema

NameRequiredDescriptionDefault
countNoNumber of events to return (max 100)
filterNoFilter expression for events
fromDateUtcNoStart date/time in UTC
rangeNoTime range (e.g., 1m, 15m, 1h, 1d, 7d)
signalNoComma-separated list of signal IDs
toDateUtcNoEnd date/time in UTC

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "default": 100, "description": "Number of events to return (max 100)", "maximum": 100, "minimum": 1, "type": "number" }, "filter": { "description": "Filter expression for events", "type": "string" }, "fromDateUtc": { "description": "Start date/time in UTC", "type": "string" }, "range": { "description": "Time range (e.g., 1m, 15m, 1h, 1d, 7d)", "enum": [ "1m", "15m", "30m", "1h", "2h", "6h", "12h", "1d", "7d", "14d", "30d" ], "type": "string" }, "signal": { "description": "Comma-separated list of signal IDs", "type": "string" }, "toDateUtc": { "description": "End date/time in UTC", "type": "string" } }, "type": "object" }

You must be authenticated.

Other Tools