Full Auth0 Management API integration — manage users, connections, applications, roles, and logs for authentication and identity management.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"auth0": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-auth0",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify auth0 credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Full Auth0 Management API integration — manage users, connections, applications, roles, and logs for authentication and identity management.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-auth0
This MCP server gives AI agents access to Auth0 via 14 tools. Connect it to any Aerostack workspace and your agents can interact with Auth0 directly.
| Tool | Description |
|---|---|
list_users | List users in the Auth0 tenant |
get_user | Get details of a specific Auth0 user |
create_user | Create a new Auth0 user |
update_user | Update an Auth0 user |
delete_user | Delete an Auth0 user |
list_connections | List all connections in the Auth0 tenant |
get_connection | Get details of a specific Auth0 connection |
list_applications | List applications (clients) in the Auth0 tenant |
get_application | Get details of a specific Auth0 application (client) |
list_roles | List roles in the Auth0 tenant |
get_role | Get details of a specific Auth0 role |
assign_role_to_user | Assign a role to an Auth0 user |
get_user_roles | Get roles assigned to an Auth0 user |
list_logs | List recent Auth0 tenant logs |
| Variable | Required | Description |
|---|---|---|
AUTH0_MANAGEMENT_TOKEN | Yes | Your Auth0 Management API token — create one in the Auth0 Dashboard under Applications → APIs → Auth0 Management API → Test |
AUTH0_DOMAIN | Yes | Your Auth0 domain (e.g. myapp.auth0.com) — found in the Auth0 Dashboard settings |
Add the following secrets under Project → Secrets:
AUTH0_MANAGEMENT_TOKENAUTH0_DOMAINOnce added, every AI agent in your workspace can use Auth0 tools automatically.
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-auth0 \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-AUTH0-MANAGEMENT-TOKEN: your-auth0-management-token' \
-H 'X-Mcp-Secret-AUTH0-DOMAIN: your-auth0-domain' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_users","arguments":{}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-auth0
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
Yes. The Auth0 MCP includes a create_user tool that lets Claude create users in your Auth0 account from a plain-English prompt. You can also update and delete users — no Auth0 UI needed.
Yes. The Auth0 MCP includes tools to list and retrieve users from your Auth0 account. Claude can filter, sort, and summarize users based on your instructions.
Yes. The Auth0 MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 14 Auth0 tools are available everywhere you connect it — install once on Aerostack.
Yes. The Auth0 MCP includes tools to update users in your Auth0 account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Auth0 API.