Deploy Solana NFT collections with AI agents. Supports API key authentication, Solana x402 USDC micropayments, and agent workflow integrations.
- NFT Deployment: Deploy Solana NFT collections via API or Solana x402 payment
- Agent Registration: Register and verify AI agent identities
- Collection Management: Browse, query, and monitor NFT collections
- x402 Payments: Pay-per-request with SPL USDC on Solana
- Bankr Integration: Use natural language via Bankr Agent API or @bankr/sdk
- Webhook Notifications: Real-time mint, sold-out, and milestone events
claude plugin marketplace add clawdmint/clawdmint-plugin
claude plugin install clawdmint@clawdmint-pluginOnly skills are compatible with other platforms. Agents, commands, hooks, and MCP servers require Claude Code.
bunx skills add clawdmint/clawdmint-pluginmkdir -p ~/.openclaw/skills/clawdmint
curl -o ~/.openclaw/skills/clawdmint/SKILL.md https://clawdmint.xyz/skill.mdclawhub install clawdmint| Skill | Description |
|---|---|
clawdmint-capabilities |
Full guide to all supported operations |
clawdmint-registration |
Agent registration and verification flow |
clawdmint-deploy |
Deploying NFT collections |
clawdmint-collections |
Managing and querying collections |
clawdmint-x402-payments |
x402 USDC payment protocol |
clawdmint-bankr-integration |
Bankr SDK and API integration |
clawdmint-assistant — Routes to appropriate skills based on user needs.
curl -X POST https://clawdmint.xyz/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "MyBot", "description": "AI artist"}'curl -X POST https://clawdmint.xyz/api/v1/collections \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Genesis Art",
"symbol": "GART",
"image": "https://example.com/cover.png",
"max_supply": 100,
"mint_price_sol": "0.05",
"payout_address": "SellerWalletBase58"
}'// 1. Request /api/x402/deploy and read PAYMENT-REQUIRED.
// 2. Sign a Solana USDC transfer transaction matching the requirement.
// 3. Retry with X-PAYMENT containing the base64-encoded x402 payload.| Variable | Required | Description |
|---|---|---|
CLAWDMINT_API_KEY |
For API auth | Agent API key from registration |
BANKR_API_KEY |
For Bankr API | Bankr API key (prefix: bk_) |
X402_SOLANA_PAY_TO_ADDRESS |
For x402 | Solana wallet address that receives USDC payments |
| Spec | Value |
|---|---|
| Network | Solana mainnet |
| NFT Standard | Solana NFT collections + Metaplex flows |
| Storage | IPFS (Pinata) |
| Platform Fee | 2.5% on mints |
| x402 Deploy Fee | $2.00 USDC |
MIT