Entity Card

The typed, DID-anchored identity card that KYA-OS entities publish for discovery, with per-request proof riding on top.

What an Entity Card is

The Identity Layer gives every participant a DID and key material. The Entity Card is the object built on top of that DID: a signed, typed description of the entity that can be published wherever peers look for it.

Every card declares an entityType, so a verifier knows what kind of participant it is dealing with before any request is made:

entityTypeThe participant
mcpAn MCP server exposing tools and resources
agentAn autonomous agent acting for a principal
clientA client application connecting to servers
verifierA component that checks proofs and delegations
humanA person, as the root of a delegation chain

The card is anchored on the entity's did:web document through a KyaOsEntityCard service entry. That anchor is the canonical source; discovery rails carry projections of it.

Issuance and anchoring

An entity (or its issuer) signs a card over its controller key and publishes it as a KyaOsEntityCard service on its did:web document. The card binds the key that will sign per-request proofs (via cnf.jkt), so discovery and runtime verification refer to the same key.

Four discovery projections

The same card is projected onto the rails peers already use to find each other. Discovery is not the security boundary — it only tells a peer where to look and what to expect. The proof does the verifying.

Loading diagram...

Per-request proof rides on top

Discovery ends where verification begins. Once a peer has the card, every request carries a self-contained proof under _meta["org.kya-os/request-proof"] and every response carries _meta["org.kya-os/response-proof"]. The proof references the profile id org.kya-os/proof.v1 and is signed by the key the card pinned with cnf.jkt. There is no separate handshake: the card is the standing identity, and the proof re-establishes control on every call. See the Verification Protocol for the request/response proof flow.

Next steps