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.3

macOS note

The current beta app is unsigned. After installing, run:

xattr -cr /Applications/DCP.app

Then right-click the app and choose Open.

2. Create and unlock your vault

  1. Open DCP Desktop.
  2. Create a vault.
  3. Save the recovery phrase.
  4. Create a Solana wallet.
  5. 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 list

4. Connect a local MCP agent

Install the agent runtime:

npm install -g @dcprotocol/agent

For 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.