Skip to content

IDProva is now available -- Get started

Quick Start

Install the CLI and create your first agent identity:

Terminal window
# Install the CLI
cargo install idprova-cli
# Generate an Ed25519 keypair
idprova keygen --output operator.key
# Create an Agent Identity Document
idprova aid create \
--id "did:aid:example.com:my-agent" \
--name "My Agent" \
--controller "did:aid:example.com:operator" \
--key operator.key
# Issue a scoped delegation token (read-only, 24h expiry)
idprova dat issue \
--issuer "did:aid:example.com:operator" \
--subject "did:aid:example.com:my-agent" \
--scope "mcp:tool:filesystem:read" \
--expires-in 24h \
--key operator.key