Auth0

Auth0

Official
auth0

Allows AI assistants to manage Auth0 authentication services through natural language commands. You can create apps, manage users, and configure authentication settings by simply asking in plain English.

Integrates with LLMs and AI agents, allowing you to perform various Auth0 management operations using natural language. For instance, you could simply ask Claude to create a new Auth0 app and get the domain and client ID.

94668 views31Local (stdio)

What it does

  • Create and configure Auth0 applications
  • Manage user accounts and profiles
  • Configure authentication settings
  • Retrieve application credentials and domain info
  • Perform Auth0 management operations

Best for

Developers setting up authentication for applicationsDevOps teams automating Auth0 configurationTeams managing multiple Auth0 tenants and apps
Natural language Auth0 managementOfficial Auth0 integration

About Auth0

Auth0 is an official MCP server published by auth0 that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrate Auth0 with AI agents to manage Auth0 operations using natural language. Easily create apps and retrieve domain It is categorized under cloud infrastructure, auth security.

How to install

You can install Auth0 in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Auth0 is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

MCP server for Auth0

License: MIT Node.js Version NPM Downloads NPM Version Ask questions about auth0-mcp-server on DeepWiki

📚 Documentation • 🚀 Getting Started • 💻 Supported Tools • 💬 Feedback

MCP (Model Context Protocol) is an open protocol introduced by Anthropic that standardizes how large language models communicate with external tools, resources or remote services.

[!CAUTION] Beta Software Notice: This software is currently in beta and is provided AS IS without any warranties.

  • Features, APIs, and functionality may change at any time without notice
  • Not recommended for production use or critical workloads
  • Support during the beta period is limited
  • Issues and feedback can be reported through the GitHub issue tracker

By using this beta software, you acknowledge and accept these conditions.

The Auth0 MCP Server integrates with LLMs and AI agents, allowing you to perform various Auth0 management operations using natural language. For instance, you could simply ask Claude Desktop to perform Auth0 management operations:

  • Create a new Auth0 app and get the domain and client ID

  • Create and deploy a new Auth0 action to generate a JWT token

  • Could you check Auth0 logs for logins from 192.108.92.3 IP address?


Auth0 MCP Server Demo

🚀 Getting Started

Prerequisites:


Install the Auth0 MCP Server

Install Auth0 MCP Server and configure it to work with your preferred MCP Client. The --tools parameter specifies which tools should be available (defaults to * if not provided).

Claude Desktop with all tools

npx @auth0/auth0-mcp-server init

Claude Desktop with read-only tools

npx @auth0/auth0-mcp-server init --read-only

You can also explicitly select read-only tools:

npx @auth0/auth0-mcp-server init --tools 'auth0_list_*,auth0_get_*'

Windsurf

npx @auth0/auth0-mcp-server init --client windsurf

Cursor

Step 1:

Install MCP Server

Step 2:

npx @auth0/auth0-mcp-server init --client cursor

Cursor with limited tools access

npx @auth0/auth0-mcp-server init --client cursor --tools 'auth0_list_applications,auth0_get_application'

VS Code

npx @auth0/auth0-mcp-server init --client vscode

You can configure VS Code for either global or workspace scope:

  • Global: Available in all VS Code instances
  • Workspace: Available only in a specific project/repository

The command will prompt you to choose your preferred scope and automatically configure the appropriate mcp.json file.

VS Code with limited tools access

npx @auth0/auth0-mcp-server init --client vscode --tools 'auth0_list_*,auth0_get_*' --read-only

Gemini CLI

Initialize the gemini MCP server for the Gemini CLI

npx @auth0/auth0-mcp-server init --client gemini

Install the Gemini Extension

gemini extensions install https://github.com/auth0/auth0-mcp-server

Other MCP Clients

To use Auth0 MCP Server with any other MCP Client, you can manually add this configuration to the client and restart for changes to take effect:

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

You can add --tools '<pattern>' to the args array to control which tools are available. See Security Best Practices for recommended patterns.

Authorize with Auth0

Your browser will automatically open to initiate the OAuth 2.0 device authorization flow. Log into your Auth0 account and grant the requested permissions.

[!NOTE] Credentials are securely stored in your system's keychain. You can optionally verify storage through your keychain management tool. Check out Authentication for more info.

Verify your integration

Restart your MCP Client (Claude Desktop, Windsurf, Cursor, etc.) and ask it to help you manage your Auth0 tenant

Claude Desktop help screen showing successful integration

🛠️ Supported Tools

The Auth0 MCP Server provides the following tools for Claude to interact with your Auth0 tenant:

Supported Tools img Supported Tools img

Applications

ToolDescriptionUsage Examples
auth0_list_applicationsList all applications in the Auth0 tenant or search by name- Show me all my Auth0 applications
- Find applications with 'api' in their name
- What applications do I have in my Auth0 tenant?
auth0_get_applicationGet details about a specific Auth0 application- Show me details for the application called 'Customer Portal'
- Get information about my application with client ID abc123
- What are the callback URLs for my 'Mobile App'?
auth0_create_applicationCreate a new Auth0 application- Create a new single-page application called 'Analytics Dashboard'
- Set up a new native mobile app called 'iOS Client'
- Create a machine-to-machine application for our background service
auth0_update_applicationUpdate an existing Auth0 application- Update the callback URLs for my 'Web App' to include https://staging.example.com/callback
- Change the logout URL for the 'Customer Portal'
- Add development environment metadata to my 'Admin Dashboard' application

Resource Servers

ToolDescriptionUsage Examples
auth0_list_resource_serversList all resource servers (APIs) in the Auth0 tenant- Show me all the APIs in my Auth0 tenant
- List my resource servers
- What APIs have I configured in Auth0?
auth0_get_resource_serverGet details about a specific Auth0 resource server- Show me details for the 'User API'
- What scopes are defined for my 'Payment API'?
- Get information about the resource server with identifier https://api.example.com"
auth0_create_resource_serverCreate a new Auth0 resource server (API)- Create a new API called 'Inventory API' with read and write scopes
- Set up a resource server for our customer data API
- Create an API with the identifier https://orders.example.com"
auth0_update_resource_serverUpdate an existing Auth0 resource server- Add an 'admin' scope to the 'User API'
- Update the token lifetime for my 'Payment API' to 1 hour
- Change the signing algorithm for my API to RS256

README truncated. View full README on GitHub.

Alternatives

Related Skills

Browse all skills
firebase

Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they're often wrong. Firestore queries are limited, and you learn this after you've designed your data model. This skill covers Firebase Authentication, Firestore, Realtime Database, Cloud Functions, Cloud Storage, and Firebase Hosting. Key insight: Firebase is optimized for read-heavy, denormalized data. I

16
security-auditor

Expert security auditor specializing in DevSecOps, comprehensive cybersecurity, and compliance frameworks. Masters vulnerability assessment, threat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud security, and security automation. Handles DevSecOps integration, compliance (GDPR/HIPAA/SOC2), and incident response. Use PROACTIVELY for security audits, DevSecOps, or compliance implementation.

4
security-reviewer

Use when conducting security audits, reviewing code for vulnerabilities, or analyzing infrastructure security. Invoke for SAST scans, penetration testing, DevSecOps practices, cloud security reviews.

3
cloud-architect

Expert cloud architect specializing in AWS/Azure/GCP multi-cloud infrastructure design, advanced IaC (Terraform/OpenTofu/CDK), FinOps cost optimization, and modern architectural patterns. Masters serverless, microservices, security, compliance, and disaster recovery. Use PROACTIVELY for cloud architecture, cost optimization, migration planning, or multi-cloud strategies.

3
aws-penetration-testing

This skill should be used when the user asks to "pentest AWS", "test AWS security", "enumerate IAM", "exploit cloud infrastructure", "AWS privilege escalation", "S3 bucket testing", "metadata SSRF", "Lambda exploitation", or needs guidance on Amazon Web Services security assessment.

3
cloud-penetration-testing

This skill should be used when the user asks to "perform cloud penetration testing", "assess Azure or AWS or GCP security", "enumerate cloud resources", "exploit cloud misconfigurations", "test O365 security", "extract secrets from cloud environments", or "audit cloud infrastructure". It provides comprehensive techniques for security assessment across major cloud platforms.

2