Feature · capability manifests
Machine-readable declarations of what your AI does.
How it works
Attestry produces MCP-compatible capability manifests your buyers' stacks can consume programmatically. Your manifest declares supported input modalities, redaction behaviors, and compliance scopes, and your customers' agents negotiate around it.
Code sample
API preview · ships with kernel checkpoint A// API preview — endpoints below ship with kernel checkpoint A
// (kernel plan §2 + §10). Path strings + payload shape are stable.
// Register or update an AI agent with a signed capability manifest.
await fetch("https://attestry.ai/api/v1/systems", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${ATTESTRY_API_KEY}`,
},
body: JSON.stringify({
name: "Example Loan Agent",
entityType: "agent",
capabilityManifest: {
capabilities: ["text-classification", "explain-decision"],
redaction: { pii: "drop", healthcare: "hash" },
frameworksAttested: ["eu-ai-act", "nist-ai-rmf"],
},
}),
});Once registered, the manifest surfaces on the public verify endpoint — agent-aware verifiers can read it from GET /api/v1/verify/{certificateHash} alongside the system's metadata.
Free plan includes fingerprinting, unverified attestations, and a public registry listing. Upgrade when you need signed proofs or SLA-backed verification.