Available now. The vault API and CLI are live, with write-only at-rest encryption. Injection is live on the MCP connector path;
env_var substitution on general sandbox egress is coming soon and the kind is refused until then.Setting a credential
How network-boundary injection works
curl the placeholder to attacker.example.com, the proxy sends the inert placeholder, not the secret. A credential can never be exfiltrated to a host it wasn’t scoped to.
At rest
Credentials are protected with envelope encryption: a per-write data key wraps the value with AES-256-GCM, and the data key itself is wrapped by a key held in a managed key service, bound to the org and identity. A vault maps to an identity and is referenced per session.Credential kinds
credential
For CLIs, SDKs, and direct API calls that authenticate through an environment variable. Stored in the sandbox only as an opaque placeholder; the real value is substituted at egress, and only for the bound destination
host. A request to any other host receives the inert placeholder, so the secret cannot be exfiltrated to an unintended endpoint.credential
For MCP servers that use OAuth 2.0, keyed by
mcp_server_url. Injected server-side when the agent connects; refreshed automatically when a refresh block is supplied.credential
For MCP servers that accept a fixed bearer token (API key or PAT), keyed by
mcp_server_url. No refresh needed.token, access_token, refresh_token, client_secret, secret_value) are write-only and never returned by the API. Reads return metadata only.
Back to identity
How personas tie it all together.