Quickstart Guide
Prerequisites
Step 1: Install SDK
# TypeScript/Node.js
npm install @clawbank/sdk
# Python
pip install clawbank
# Go
go get github.com/ClawBank-app/go-sdkStep 2: Initialize Client
import { ClawBank } from '@clawbank/sdk';
const client = new ClawBank({
apiKey: process.env.CLAWBANK_API_KEY,
environment: 'production', // 'sandbox' for testnet
network: 'solana-mainnet' // or 'solana-devnet'
});Step 3: Create Treasury Vault
Step 4: Configure Authorization Policy
Step 5: Deploy MCP Server for AI Agents
Option A: Claude Desktop Integration
Option B: Programmatic MCP Client
Step 6: Execute First Transaction
Complete Example: AI Agent Treasury
Devnet Testing
Next Steps
Support
Last updated