Signature
Is this certificate actually signed by the tenant's key, and does the caller hold the private key it names?
The platform
Sigilex is built around a single primitive — the capability certificate — and three things you can do with it: issue authority to a human, issue it to an AI agent, or hand it to an application that only speaks OpenID Connect. Same certificates, same revocation, same audit trail underneath all three.
The primitive
Not a session cookie, not an opaque bearer string. A signed statement: this public key may perform these specific actions, until this specific time.
Enforcement
The gateway sits in front of whatever you're protecting and verifies three things on every single request before it's allowed through, then fails closed on anything it can't confirm.
Is this certificate actually signed by the tenant's key, and does the caller hold the private key it names?
Has it expired, and is it inside the freshness lease that keeps a gateway from acting on stale revocation state?
Has this certificate, or anything above it in the delegation chain, been killed since it was issued?
Any one of those failing is a denial — never a fallback to "allow and log." The decision is written to the audit trail either way.
Three surfaces, one protocol
Certificate issuance, human and service delegation, per-call gateway verification, and the client-verifiable audit trail. The admin console for the people who run it — members, roles, key rotation, revocation, and the fleet of enforcement gateways, all in one place.
Put your Model Context Protocol tool servers behind a Sigilex gateway. An agent gets a certificate scoped to specific tools and a short lifetime instead of a shared API key — and because enforcement is per-call, killing one agent's authority never touches another's, mid-session.
A standards-compliant OpenID Connect provider on top of the same certificate core. Applications that only know how to talk OIDC authenticate against Sigilex without any awareness that capability certificates exist underneath.
Get started
We'll walk through how certificate scoping maps to whatever you're trying to protect — an internal API, an MCP tool server, or an application that needs SSO.