> ## Documentation Index
> Fetch the complete documentation index at: https://docs.strata.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to Maverics

export function StatusWidget() {
  const [indicator, setIndicator] = useState(null);
  const [description, setDescription] = useState("");
  useEffect(() => {
    const controller = new AbortController();
    const timeout = setTimeout(() => controller.abort(), 5000);
    fetch(API_URL, {
      signal: controller.signal
    }).then(response => response.json()).then(data => {
      setIndicator(data.status && data.status.indicator ? data.status.indicator : "none");
      setDescription(data.status && data.status.description ? data.status.description : "");
    }).catch(() => {}).finally(() => clearTimeout(timeout));
    return () => {
      controller.abort();
      clearTimeout(timeout);
    };
  }, []);
  if (indicator === null) {
    return null;
  }
  const info = STATUS_MAP[indicator] || STATUS_MAP.none;
  return <a href={STATUS_URL} target="_blank" rel="noopener noreferrer" title={description || info.label} style={{
    display: "inline-flex",
    alignItems: "center",
    gap: "6px",
    textDecoration: "none",
    fontSize: "13px",
    fontWeight: 500,
    padding: "4px 10px",
    borderRadius: "6px",
    transition: "background-color 0.15s ease",
    color: "var(--tw-prose-body, #555)"
  }}>
      <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "50%",
    flexShrink: 0,
    display: "inline-block",
    backgroundColor: info.color,
    boxShadow: `0 0 6px 1px ${info.color}80`
  }} />
      <span style={{
    whiteSpace: "nowrap"
  }}>{info.label}</span>
    </a>;
}

Maverics is Strata Identity's orchestration platform for modern, legacy, and AI identity. The **Orchestrator** -- a lightweight identity abstraction layer -- routes authentication and authorization between your applications and any identity provider, while the **Maverics Console** provides a visual interface for managing connectors, policies, and configurations.

<StatusWidget />

<Frame caption="Become an Identity Hero with Maverics">
  <iframe className="w-full aspect-video rounded-xl" src="https://www.youtube.com/embed/fXZm8Mje7LY" title="Become an Identity Hero with Maverics" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

### Why Maverics

* **Extend identity to AI** -- Connect enterprise identity to MCP servers and AI-powered applications through the AI Identity Gateway without rebuilding your identity infrastructure from scratch.
* **Vendor independence** -- Work with any identity provider, any protocol. Maverics translates bidirectionally between SAML, OIDC, LDAP, and header-based auth so you're never locked into a single vendor's ecosystem.
* **Identity Continuity** -- Maverics monitors IdP health and automatically fails over to a backup when an outage is detected. Multi-tier resilience options range from basic failover to [tactical edge deployments](/guides/identity-continuity/reducing-spofs) that operate autonomously when cloud connectivity is severed.
* **Modernize apps without code changes** -- Add SSO, MFA, and authorization policies to applications that don't natively support them. Maverics acts as an identity-aware reverse proxy so applications need zero modification.
* **Data stays in your environment** -- Maverics is self-hosted inside your infrastructure. Authentication traffic -- tokens, credentials, user attributes -- never leaves your environment. Only configuration flows through the cloud.
* **Zero-downtime migration** -- Migrate between identity providers incrementally. Maverics routes authentication between old and new providers simultaneously so you can move users at your own pace with no rip-and-replace.
* **Programmable at every layer** -- [Service extensions](/reference/orchestrator/service-extensions) give you 30+ hook points across the authentication and authorization lifecycle with an embedded Go runtime. Customize request handling, build custom API endpoints, or integrate with any external system.

## What You Can Do

Maverics handles the identity complexity so you can focus on your applications.

<CardGroup cols={2}>
  <Card title="Migrate Identity Providers" icon="arrow-right-arrow-left">
    Move users from one identity provider to another incrementally, with zero downtime and no application changes.
  </Card>

  <Card title="Add SSO to Legacy Apps" icon="key">
    Add SAML or OIDC single sign-on to legacy applications that only support header-based or forms-based authentication, without modifying application code.
  </Card>

  <Card title="Protect APIs" icon="lock">
    Enforce fine-grained authorization policies on API endpoints using OAuth 2.0 token validation, claim-based routing, and policy evaluation.
  </Card>

  <Card title="Secure AI Applications" icon="brain">
    Extend enterprise identity and authorization to MCP servers and AI-powered applications through the AI Identity Gateway.
  </Card>

  <Card title="Consolidate Multi-Cloud Identity" icon="cloud">
    Unify identity across AWS, Azure, GCP, and on-premises environments through a single orchestration layer.
  </Card>
</CardGroup>

## Who Is Maverics For

<CardGroup cols={2}>
  <Card title="IAM Administrators" icon="user-shield">
    Tired of risky, all-or-nothing identity migrations? Use Maverics to migrate users between identity providers incrementally, configure SSO federation across protocols, and manage authentication policies -- all without custom code or application changes.
  </Card>

  <Card title="Platform Engineers" icon="server">
    Struggling with identity sprawl across environments? Deploy the Orchestrator as a lightweight identity abstraction layer, manage configuration with YAML and GitOps, and integrate with your existing secrets and caching infrastructure.
  </Card>

  <Card title="Developers" icon="code">
    Need identity in your applications without becoming an IAM expert? Maverics simplifies application design with an extensible identity layer, built-in AI identity support, and standard protocol handling -- so you can focus on features, not auth plumbing.
  </Card>
</CardGroup>

## Security & Compliance

<CardGroup cols={2}>
  <Card title="Self-Hosted Architecture" icon="building-shield" href="/guides/security/overview">
    Deploy in your own infrastructure with full control over secrets, certificates, and network policies. Nothing leaves your environment unless you choose it.
  </Card>

  <Card title="Tamper-Proof Configuration" icon="file-signature" href="/reference/console/config-publishing">
    Configuration bundles are cryptographically signed and verified before every deployment, ensuring only authorized changes reach your Orchestrators.
  </Card>

  <Card title="Complete Audit Trail" icon="scroll" href="/guides/security/compliance">
    Every authentication event, configuration change, and administrative action is logged for compliance reporting and forensic analysis.
  </Card>

  <Card title="Trust Center" icon="shield-check" href="https://trust.strata.io">
    Certifications, security practices, penetration testing results, and compliance documentation.
  </Card>
</CardGroup>

## Explore the Docs

The documentation is organized by what you're trying to accomplish.

<CardGroup cols={2}>
  <Card title="Getting Started" icon="rocket" href="/introduction/getting-started">
    Deploy your first Orchestrator and route an authentication request in minutes.
  </Card>

  <Card title="Architecture" icon="diagram-project" href="/introduction/architecture">
    Understand how the Orchestrator, Console, and identity providers fit together.
  </Card>

  <Card title="Guides" icon="book-open" href="/guides/getting-started/overview">
    Step-by-step walkthroughs for authentication, AI identity, operations, and security.
  </Card>

  <Card title="Orchestrator Reference" icon="server" href="/reference/orchestrator/overview">
    Operating modes, configuration, route handling, and runtime behavior.
  </Card>

  <Card title="Identity Fabric" icon="plug" href="/reference/orchestrator/identity-fabric">
    Identity providers, config sources, secret providers, caches, and sessions.
  </Card>

  <Card title="Configuration" icon="file-code" href="/reference/orchestrator/configuration">
    Complete configuration reference for apps, connectors, policies, and service extensions.
  </Card>

  <Card title="Videos" icon="video" href="/introduction/videos">
    Watch video walkthroughs covering setup, configuration, and common workflows.
  </Card>
</CardGroup>
