read_system_activity_logAdmin-only MCP tool.
This Formulize system logs all activity. This tool will read up to the last 1000 lines from the activity log and return them as a array of JSON objects. There are several keys available in the objects, including microtime (a timestamp), user_id (the user who was active), request_id (which identifies log entries that were part of the same http request), session_id (which connects each request in a user’s session), formulize_event (which is a short descriptor of the activity), as well as form_id, screen_id, and entry_id.
| Property | Type | Required? | Description |
|---|---|---|---|
| form_id | integer | Optional | Optional. A comma separated list of form IDs that you want to find in the logs. Only log entries related to these forms will be returned. |
| screen_id | integer | Optional | Optional. A comma separated list of screen IDs that you want to find in the logs. Only log entries related to these screens will be returned. |
| entry_id | integer | Optional | Optional. A comma separted list of entry IDs that you want to find in the logs. If this is specified, then form_id must be a single form ID because entry IDs are unique within a form. Only log entries related to these entries will be returned. |
| user_id | integer | Optional | Optional. A comma separated list of user IDs that you want to find in the logs. Only log entries related to these users will be returned. |