Identity Provider

Secure Authentication
for Modern Apps

OAuth 2.0, OpenID Connect, MFA, and dynamic client registration — everything you need to protect your users and services.

Features

Everything You Need
to Secure Your Platform

A complete identity solution with modern protocols, strong security defaults, and developer-friendly APIs.

OAuth 2.0 & OIDC

OAuth 2.0 & OpenID Connect

Industry-standard protocols for secure authentication and authorization across all your applications.

MFA

Multi-Factor Authentication

Enhance security with flexible MFA options including TOTP, SMS, and hardware keys.

Confidential Clients

Confidential Clients

Register confidential clients for server-to-server communication.

Dynamic Client Registration

Dynamic Client Registration (MCP compatible)

Allow clients to register dynamically with the identity provider via standard protocols.

Custom JWTs

Custom JWTs

Issue custom JSON Web Tokens with flexible claims to protect your microservices.

Analytics Dashboard

Analytics Dashboard

Gain insights into user activity, authentication metrics, and security events.

Security

Security Without
Compromise

Built on security best practices with sensible defaults that protect your users out of the box.

Zero Trust Architecture

Every request is verified. No implicit trust for any user, device, or network.

Token Rotation

Automatic refresh token rotation with replay detection to prevent token theft.

PKCE by Default

Proof Key for Code Exchange enabled by default for all public clients.

Audit Logging

Complete audit trail of authentication events for compliance and forensics.

Developers

Integrate in Minutes,
Not Days

No vendor lock-in. Use standard OpenID Connect libraries and our comprehensive HTTP API documentation to integrate with any language or framework.

  • Complete OpenAPI 3.0 specification
  • Standard OpenID Connect Discovery
  • Compatible with any OIDC client library
  • Docker-ready for local development
  • Webhook support for real-time events
app.ts
import { discovery, randomPKCECodeVerifier, calculatePKCECodeChallenge } from 'openid-client';

const config = await discovery("https://api.mxidp.com", ":clientId", ":clientSecret");

const code_verifier = randomPKCECodeVerifier()
const code_challenge = await calculatePKCECodeChallenge(code_verifier)

const parameters: Record<string, string> = {
  redirect_uri,
  scope,
  code_challenge,
  code_challenge_method: 'S256',
  state: ":state"
}
const authUrl = client.buildAuthorizationUrl(config, parameters);

Ready to Secure
Your Platform?

Get started with mxidp today. Set up authentication in minutes with our developer-friendly APIs and SDKs.