get-audit-logs
Retrieve audit logs from the Miro MCP server within a specified date range, with pagination and sorting options. Ideal for monitoring enterprise activity over the last 90 days.
Instructions
Retrieves a page of audit events from the last 90 days (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
createdAfter | Yes | Retrieve audit logs created after this date (ISO 8601 format) | |
createdBefore | Yes | Retrieve audit logs created before this date (ISO 8601 format) | |
cursor | No | Cursor for pagination | |
limit | No | Maximum number of results to return (default: 100) | |
sorting | No | Sort order for results (default: ASC) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"createdAfter": {
"description": "Retrieve audit logs created after this date (ISO 8601 format)",
"type": "string"
},
"createdBefore": {
"description": "Retrieve audit logs created before this date (ISO 8601 format)",
"type": "string"
},
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 100)",
"type": "number"
},
"sorting": {
"description": "Sort order for results (default: ASC)",
"enum": [
"ASC",
"DESC"
],
"type": "string"
}
},
"required": [
"createdAfter",
"createdBefore"
],
"type": "object"
}