Quick Start
Get PocketAgent running in under five minutes — MCP-only or full platform.
Integration paths
MCP package (recommended for editors)
pip install pokt-agent-mcp — drop 51 blockchain tools into your AI client.
Full platform
Next.js UI + FastAPI backend — agents, chat, Automations, and analytics.
Fastest path: MCP in 2 steps
- Install the package:
pip install pokt-agent-mcp - 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 devOpens the web UI at localhost:3000 and the REST API at localhost:8000. Interactive OpenAPI docs live at /docs.
Next steps
- Create an agent with chains and capabilities
- Fund the agent wallet on your target chains
- Start chatting via the UI or REST API