Imported from modbender/skill-library-mcp (
data/auth0/SKILL.md). Install upstream withnpx skills add modbender/skill-library-mcp --skill auth0. Copyright stays with the author.
Auth0
Identity platform.
Environment
export AUTH0_DOMAIN="your-tenant.auth0.com"
export AUTH0_MGMT_TOKEN="xxxxxxxxxx"
List Users
curl "https://$AUTH0_DOMAIN/api/v2/users" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
Create User
curl -X POST "https://$AUTH0_DOMAIN/api/v2/users" \
-H "Authorization: Bearer $AUTH0_MGMT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com", "password": "Pass123!", "connection": "Username-Password-Authentication"}'
Get User
curl "https://$AUTH0_DOMAIN/api/v2/users/{userId}" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
List Applications
curl "https://$AUTH0_DOMAIN/api/v2/clients" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
Links
- Dashboard: https://manage.auth0.com
- Docs: https://auth0.com/docs/api/management/v2