Auth0 MCP Server
Securitystdio
Auth0's official MCP server that connects AI agents to the Auth0 Management API. Lets developers create and configure applications, deploy Actions, manage APIs and connections, and query tenant logs using natural language. Runs locally with interactive tenant authentication and stores access tokens in the system keychain so the model never sees them directly, supporting secure Auth0 administration.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"auth0": {
"command": "npx",
"args": [
"-y",
"@auth0/auth0-mcp-server",
"run"
]
}
}
}Tools (3)
auth0_create_application
Create a new Auth0 application (client) in the authenticated tenant.
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the application"
},
"app_type": {
"type": "string",
"description": "Application type (spa, native, regular_web, non_interactive)"
}
}
}auth0_list_applications
List applications configured in the Auth0 tenant.
{
"type": "object",
"properties": {}
}auth0_get_logs
Query recent Auth0 tenant logs for troubleshooting and auditing.
{
"type": "object",
"properties": {
"take": {
"type": "integer",
"description": "Number of log entries to return"
},
"query": {
"type": "string",
"description": "Optional log search query"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Auth0 (@auth0)
- Stars
- 0
- Last Updated
- July 12, 2026