Trustless spending accounts for AI agents on Solana.
Give AI agents spending power without giving them your wallet keys. On-chain enforced limits they literally cannot bypass.
Per-tx limits · Daily budgets · Lifetime caps · Instant freeze · ZK privacy mode
SDK - Create an agent and pay
import { CloakedAgent } from '@cloakedagent/sdk';
const { agent, agentKey } = await CloakedAgent.create(connection, wallet, {
maxPerTx: 0.1 * LAMPORTS_PER_SOL,
dailyLimit: 1.0 * LAMPORTS_PER_SOL,
});
await agent.spend({ destination, amount: 0.05 * LAMPORTS_PER_SOL });MCP - Add to Claude or any AI agent
{
"mcpServers": {
"cloaked": {
"command": "npx",
"args": ["-y", "cloaked-mcp"],
"env": { "CLOAKED_AGENT_KEY": "your-agent-key" }
}
}
}Create, fund, and monitor agents from the browser. Real-time spending tracking, constraint editing, instant freeze, and full transaction history - no code required.
Standard mode or fully private - your choice. Private agents use zero-knowledge proofs to hide the wallet-agent link entirely. Fund privately via Privacy Cash, prove ownership without revealing it.
Website · Documentation · Dashboard · npm