- CLI
- Python SDK or TypeScript SDK
- Add a framework or MCP layer only after that first run works
Component overview
Platform responsibilities
Cobo Agentic Wallet Service
The Cobo Agentic Wallet service is the single source of truth for all wallet, identity, delegation, policy, and audit state.Modules
Authentication
SDK & integrations
From a developer perspective, CAW splits into two layers:- a control layer you call from your program
- an owner layer that handles pairing, approvals, and guardrails
The MCP Server (
cobo-agentic-wallet[mcp]) is a separate stdio server that exposes the same wallet tools to any MCP-compatible client (Claude Desktop, Cursor, etc.).
Integration modes
For nearly all developers in these docs, the only mode that matters is Agent Mode. In Agent Mode, your runtime integrates with the CAW service and Cobo provides the owner-facing controls, pairing flow, policy management, and approval UX.
For the developer experience in these docs, Agent Mode is the default path because it lets you focus on runtime logic instead of rebuilding the owner layer. Core Mode and Owner Mode should be treated as advanced deployment options, not the main onboarding story.
Human Interface
A separate service that provides the owner-facing experience.
The Human Interface service holds an owner’s API key and acts on behalf of the owner when calling the Cobo Agentic Wallet service.
For developers, this is the key separation to understand: your runtime never needs to implement owner pairing, approval UI, or policy-management UI in the default integration mode.
Security architecture
Signing layer is isolated from the AI layer
Your program interacts with the Cobo Agentic Wallet service through the REST API using an API key. The API key grants permission to submit transaction requests — it does not give the runtime access to private key material. Signing happens inside the Cobo Agentic Wallet service using Multi-Party Computation, which requires cooperation from multiple independent parties. The LLM component of your agent, if you have one, never sees, holds, or derives private keys.Policy engine as a structural guard
Every transaction request passes through a three-stage policy gate before anything executes on-chain:- Permission check — does this API key have permission to perform this operation type?
- Policy rule evaluation — does this operation satisfy the owner’s configured rules?
- Counter check — does this operation stay within rolling spend limits?