maltego_get_recent_events
Retrieve recent Maltego investigation events with optional incremental polling using a sequence number for efficient updates.
Instructions
Return recent investigation events (entity_discovered, transform_*, etc.).
Reads from the event bus's bounded buffer. Use since_seq to fetch only
events newer than a sequence number you've already seen (incremental polling).
Args: params (GetEventsInput): - limit (int): Max events (default 50). - since_seq (Optional[int]): Only events with seq greater than this. - response_format (ResponseFormat): 'json' (default) or 'markdown'.
Returns: str: JSON form is {count, next_seq, events:[{seq,type,timestamp,data}]}; markdown is a readable list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |