Auth0 MCP Server

Securitystdio
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "auth0": {
      "command": "npx",
      "args": [
        "-y",
        "@auth0/auth0-mcp-server",
        "run"
      ]
    }
  }
}

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Auth0 (@auth0)
Repositorio
https://github.com/auth0/auth0-mcp-server
Estrellas
0
Última actualización
12 de julio de 2026