descope-mcp-server

search-audits

Search Descope project audit logs

Input Schema

NameRequiredDescriptionDefault
actionsNoFilter by specific action types
excludedActionsNoActions to exclude from results
geosNoFilter by geographic locations
hoursBackNoHours to look back (max 720 hours / 30 days)
limitNoNumber of audit logs to fetch (max 10)
loginIdsNoFilter by specific login IDs
methodsNoFilter by authentication methods
noTenantsNoIf true, only show events without tenants
tenantsNoFilter by specific tenant IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "actions": { "description": "Filter by specific action types", "items": { "type": "string" }, "type": "array" }, "excludedActions": { "description": "Actions to exclude from results", "items": { "type": "string" }, "type": "array" }, "geos": { "description": "Filter by geographic locations", "items": { "type": "string" }, "type": "array" }, "hoursBack": { "default": 24, "description": "Hours to look back (max 720 hours / 30 days)", "maximum": 720, "minimum": 1, "type": "number" }, "limit": { "default": 5, "description": "Number of audit logs to fetch (max 10)", "maximum": 10, "minimum": 1, "type": "number" }, "loginIds": { "description": "Filter by specific login IDs", "items": { "type": "string" }, "type": "array" }, "methods": { "description": "Filter by authentication methods", "items": { "type": "string" }, "type": "array" }, "noTenants": { "description": "If true, only show events without tenants", "type": "boolean" }, "tenants": { "description": "Filter by specific tenant IDs", "items": { "type": "string" }, "type": "array" } }, "type": "object" }