Getting Started
The easiest beta path is Desktop first, then connect agents through MCP.
1. Install DCP Desktop
Download the latest desktop build from the beta release page:
https://github.com/1lystore/dcp/releases/tag/v2.0.3macOS note
The current beta app is unsigned. After installing, run:
xattr -cr /Applications/DCP.appThen right-click the app and choose Open.
2. Create and unlock your vault
- Open DCP Desktop.
- Create a vault.
- Save the recovery phrase.
- Create a Solana wallet.
- Add a small test record such as
identity.email.
3. Optional CLI
The CLI is shipped by @dcprotocol/vault.
npm install -g @dcprotocol/vault
dcp init
dcp create-wallet --chain solana
dcp add identity.email
dcp list4. Connect a local MCP agent
Install the agent runtime:
npm install -g @dcprotocol/agentFor Claude Desktop, Cursor, or another stdio MCP client:
{
"command": "dcp-agent",
"args": ["run", "--mode", "mcp", "--agent", "agent_local_dev"]
}For OpenClaw local setup:
openclaw mcp set dcp '{"command":"npx","args":["-y","@dcprotocol/agent","run","--mode","mcp","--agent","agent_openclaw_local"]}'5. Test prompts
What is my email from DCP?
What is my Solana wallet address?
Send 0.00001 SOL to <address>
Send 1000 1LY to <address>6. Remote VPS agents
For OpenClaw or another agent on a VPS, use Desktop to create a remote invite and run the generated command:
curl -fsSL https://dcpagent.com/install.sh | sudo bash -s -- 'dcp_vps_v1_...'Use the remote agent guide if OpenClaw does not see the DCP tools immediately.