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.

连接

将此配置添加到 .claude/mcp.json

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

工具 (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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Auth0 (@auth0)
代码仓库
https://github.com/auth0/auth0-mcp-server
星标
0
最后更新
2026年7月12日