descope-mcp-server

search-users

Search for users in Descope project

Input Schema

NameRequiredDescriptionDefault
emailsNoFilter by specific email addresses
limitNoNumber of users per page (max 100)
loginIdsNoFilter by specific login IDs
pageNoPage number for pagination
phonesNoFilter by specific phone numbers
rolesNoFilter users by role names
ssoAppIdsNoFilter users by SSO application IDs
statusesNoFilter by user statuses ('enabled', 'disabled', or 'invited')
tenantIdsNoFilter users by specific tenant IDs
testUsersOnlyNoReturn only test users
textNoText to search for in user fields
withTestUserNoInclude test users in results

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "emails": { "description": "Filter by specific email addresses", "items": { "type": "string" }, "type": "array" }, "limit": { "default": 10, "description": "Number of users per page (max 100)", "maximum": 100, "minimum": 1, "type": "number" }, "loginIds": { "description": "Filter by specific login IDs", "items": { "type": "string" }, "type": "array" }, "page": { "description": "Page number for pagination", "minimum": 0, "type": "number" }, "phones": { "description": "Filter by specific phone numbers", "items": { "type": "string" }, "type": "array" }, "roles": { "description": "Filter users by role names", "items": { "type": "string" }, "type": "array" }, "ssoAppIds": { "description": "Filter users by SSO application IDs", "items": { "type": "string" }, "type": "array" }, "statuses": { "description": "Filter by user statuses ('enabled', 'disabled', or 'invited')", "items": { "enum": [ "enabled", "disabled", "invited" ], "type": "string" }, "type": "array" }, "tenantIds": { "description": "Filter users by specific tenant IDs", "items": { "type": "string" }, "type": "array" }, "testUsersOnly": { "description": "Return only test users", "type": "boolean" }, "text": { "description": "Text to search for in user fields", "type": "string" }, "withTestUser": { "description": "Include test users in results", "type": "boolean" } }, "type": "object" }