
Auth0
OfficialAuth0 MCP Server integrates with LLMs and AI
Provider:Auth0
Category:Security
Configuration
Add this configuration to your MCP settings file (usually mcp.json or your IDE's MCP configuration):
JSON Configuration
{
"mcpServers": {
"auth0": {
"command": "npx",
"args": [
"-y",
"auth0-mcp"
],
"env": {
"AUTH0_DOMAIN": "<your-auth0-domain>",
"AUTH0_CLIENT_ID": "<your-auth0-client-id>",
"AUTH0_CLIENT_SECRET": "<your-auth0-client-secret>"
}
}
}
}