EveryDev.ai
Subscribe
Home
Tools

3,864+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Authorizer
    Authorizer icon

    Authorizer

    Identity & Access Management
    Featured

    Open-source, self-hosted authentication and authorization server with OAuth2/OIDC, fine-grained authorization via embedded OpenFGA, and support for 13+ databases.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under Apache-2.0. Self-host on your own infrastructure; pay only for the infra you run.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Android
    iOS

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Identity & Access ManagementAccess ControlMCP Servers

    Alternatives

    WorkOS MCPOry TalosPermit.io
    Developer
    authorizerdevVadodara, IndiaEst. 2020

    Listed Sep 2026

    About Authorizer

    Authorizer is an open-source (Apache-2.0) authentication and authorization server you deploy on your own infrastructure, keeping every user record in a database you control. Built in Go, it combines OAuth2/OIDC identity, relationship-based fine-grained authorization via an embedded OpenFGA engine, and a built-in MCP server for AI agents—all in a single binary. The project has accumulated over 2,000 GitHub stars and reached version 2.4.1 as of September 2026.

    What It Is

    Authorizer is a self-hosted alternative to hosted identity platforms such as Auth0 or Okta. Rather than storing user data on a vendor's servers and paying per-seat fees, teams deploy Authorizer on their own cloud, VPC, or one-click platform (Railway, Heroku, Render, Koyeb) and connect it to whichever database their application already uses. It handles the full authentication and authorization lifecycle—login, sessions, MFA, enterprise SSO, fine-grained permissions, and AI-aware access control—without requiring separate services.

    Core Authentication Capabilities

    Authorizer ships a broad set of auth recipes out of the box:

    • Login methods: Email/password, magic link, social logins (Google, GitHub, Facebook, LinkedIn, Apple, Discord, Twitter, Twitch, Roblox, Microsoft), and WebAuthn passkeys (Touch ID, Face ID, Windows Hello, FIDO2 hardware keys)
    • MFA: TOTP authenticator apps, email OTP, SMS OTP via Twilio, and passkeys as a second factor, with brute-force lockout and admin recovery
    • Enterprise SSO: SAML 2.0 as both Service Provider and Identity Provider, OIDC federation, SCIM 2.0 provisioning, verified email domains, and home-realm discovery
    • Machine-to-machine: client_credentials grant, secretless workload identity (RFC 7523, SPIFFE JWT-SVIDs, Kubernetes TokenReview), and RFC 8693 token exchange for agent delegation
    • Session security: HTTP-only cookies, CSRF/CORS/HSTS/CSP defaults, rate limiting, brute-force protection, and a dedicated at-rest encryption key

    Fine-Grained Authorization and Permission-Aware AI

    Authorizer embeds an OpenFGA engine—the open-source implementation of Google's Zanzibar relationship-based access control—directly in the same Go binary that handles login. This means check_permissions and list_permissions run in-process with no extra service to deploy.

    For AI and RAG pipelines, this architecture enables permission-aware retrieval: the application fetches the current user's allow-list using their own token, then pre-filters the vector search so the model only ever sees documents that user is permitted to read. Forbidden chunks are never scored, never placed in the prompt, and the pipeline fails closed if authorization is unavailable. Revoking access takes effect on the user's next query with no re-indexing required.

    The built-in MCP server exposes a curated, read-only subset of the API (profile, check_permissions, list_permissions) to AI hosts including Claude Desktop, Claude Code, Cursor, and any MCP-compatible client. It is stdio-only and cannot be exposed over the network; credential-issuing and destructive operations are never exposed.

    Database and Deployment Flexibility

    Authorizer supports 13+ databases across SQL, NoSQL, and graph backends: PostgreSQL, MySQL, MariaDB, SQLite, SQL Server, MongoDB, Cassandra, ScyllaDB, ArangoDB, YugabyteDB, PlanetScale, AWS DynamoDB, and Couchbase. Users can request additional database support via GitHub issues.

    Deployment options include:

    • Docker (single command, SQLite or external DB)
    • Kubernetes with a Helm chart (v2.2.1, appVersion 2.3.0)
    • One-click platforms: Railway, Heroku, Render, Koyeb, RepoCloud, Alibaba Cloud
    • Binaries for macOS (amd64/arm64) and Linux (amd64/arm64)

    APIs, SDKs, and Integration

    Authorizer exposes GraphQL, REST, and gRPC APIs over standard OAuth2 and OpenID Connect flows. Official SDKs are available for Go, JavaScript/TypeScript, and React; the Python SDK is in pre-release; Vue and Svelte SDKs are in beta; and a Flutter SDK is in progress. The fine-grained authorization helpers (check_permissions and list_permissions) ship in the Go, JavaScript, and Python SDKs. A built-in login page is included, and a React SDK enables custom UI embedding in three lines of code.

    Update: Version 2.4.1

    The latest release is 2.4.1, published on September 3, 2026. Authorizer v2 introduced a significant architectural change: all configuration is now passed as CLI arguments at startup rather than read from .env files or set via the dashboard. Required flags include --url, --client-id, --client-secret, --admin-secret, --jwt-*, and --encryption-key. A migration guide (MIGRATION.md) covers the full mapping from v1 environment variables to v2 CLI flags. The roadmap includes React Native, Android, iOS, and PHP SDKs, a WordPress plugin, and additional cloud deployment targets.

    Authorizer - 1

    Community Discussions

    Be the first to start a conversation about Authorizer

    Share your experience with Authorizer, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under Apache-2.0. Self-host on your own infrastructure; pay only for the infra you run.

    • OAuth2 and OpenID Connect
    • Social logins
    • Email/password and magic link
    • WebAuthn passkeys
    • MFA (TOTP, email OTP, SMS OTP)

    Capabilities

    Key Features

    • OAuth2 and OpenID Connect (IdP and Relying Party)
    • Social logins (Google, GitHub, Facebook, LinkedIn, Apple, Discord, Twitter, Twitch, Roblox, Microsoft)
    • Email/password and magic link authentication
    • WebAuthn passkeys (FIDO2, Touch ID, Face ID, Windows Hello)
    • TOTP, email OTP, and SMS OTP multi-factor authentication
    • Enterprise SSO: SAML 2.0 (SP and IdP), OIDC federation
    • SCIM 2.0 user and group provisioning
    • Role-based access control (RBAC)
    • Fine-grained authorization via embedded OpenFGA (Zanzibar ReBAC)
    • Permission-aware RAG and AI pipeline support
    • Built-in MCP server for AI agents (stdio-only, read-only)
    • RFC 8693 token exchange for agent delegation
    • Machine-to-machine auth with client_credentials and workload identity
    • GraphQL, REST, and gRPC APIs
    • SDKs for Go, JavaScript/TypeScript, React, Python (pre-release), Vue (beta), Svelte (beta)
    • 13+ database backends (SQL, NoSQL, graph)
    • Built-in login page and admin dashboard
    • Email templating and webhooks
    • Prometheus metrics and health/readiness endpoints
    • Rate limiting, CSRF/CORS/HSTS/CSP security defaults
    • Multi-tenancy and organization support
    • Kubernetes Helm chart
    • One-click deployment to Railway, Heroku, Render, Koyeb

    Integrations

    PostgreSQL
    MySQL
    MariaDB
    SQLite
    SQL Server
    MongoDB
    Cassandra
    ScyllaDB
    ArangoDB
    YugabyteDB
    PlanetScale
    AWS DynamoDB
    Couchbase
    Docker
    Kubernetes
    Helm
    Railway
    Heroku
    Render
    Koyeb
    Twilio (SMS OTP)
    OpenFGA
    Prometheus
    Claude Desktop
    Claude Code
    Cursor
    Google Workspace (SAML/OIDC)
    Okta (SAML/OIDC)
    Microsoft Entra ID (SAML/OIDC)
    SPIFFE
    Qdrant (via permission-aware RAG)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Authorizer and help others make informed decisions.

    Developer

    authorizerdev

    authorizerdev builds Authorizer, an open-source authentication and authorization server that teams self-host on their own infrastructure. The project, written in Go and licensed under Apache-2.0, combines OAuth2/OIDC identity, embedded OpenFGA fine-grained authorization, and a built-in MCP server for AI agents in a single deployable binary. Authorizer supports 13+ databases and one-click deployment to Railway, Heroku, Render, and Kubernetes, giving developers full ownership of their user data without per-seat fees.

    Founded 2020
    Vadodara, India
    1 employees
    Read more about authorizerdev
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    WorkOS MCP icon

    WorkOS MCP

    WorkOS MCP is an OAuth 2.1 authorization server for securing Model Context Protocol servers, providing dynamic client registration, PKCE, JWT verification, and token management for AI agents—plus enterprise SSO, directory sync, and admin tooling.

    Ory Talos icon

    Ory Talos

    A scalable, security-hardened API key server for issuing, verifying, revoking, and deriving API keys and short-lived tokens for high-throughput systems.

    Permit.io icon

    Permit.io

    Permit.io is a full-stack authorization platform that provides fine-grained, real-time permissions for applications, APIs, and AI agents using RBAC, ABAC, and ReBAC models.

    Browse all tools

    Related Topics

    Identity & Access Management

    Security-focused systems for managing user identities, authentication, authorization, and access control across applications and services.

    18 tools

    Access Control

    AI-enhanced tools for managing authentication and authorization.

    35 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    235 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions