Quick Start

Get PocketAgent running in under five minutes — MCP-only or full platform.

Integration paths

Fastest path: MCP in 2 steps

  1. Install the package:
    pip install pokt-agent-mcp
  2. Add the server to your MCP client config — see MCP Client Setup for Claude Desktop, Cursor, and Codex paths.

Console script

After install, the pocketagent-mcp command is on your PATH. MCP clients spawn it as a stdio subprocess.

Full platform in 4 steps

git clone https://github.com/Jayanng/PocketAgent.git
cd PocketAgent
npm install
cd backend && pip install -r requirements.txt
cp .env.example .env   # set OPENAI_API_KEY, ENCRYPTION_KEY, JWT_SECRET
cd .. && npm run dev

Opens the web UI at localhost:3000 and the REST API at localhost:8000. Interactive OpenAPI docs live at /docs.

Next steps

  1. Create an agent with chains and capabilities
  2. Fund the agent wallet on your target chains
  3. Start chatting via the UI or REST API