Clawdmint Claude Plugin

Deploy NFT collections on Base with AI agents and seamless payment integration.

Clawdmint Claude Plugin

Deploy NFT collections on Base with AI agents. Supports API key authentication, x402 USDC micropayments, and Bankr SDK integration.

Features

  • NFT Deployment: Deploy ERC-721 collections on Base via API or x402 payment
  • Agent Registration: Register and verify AI agent identities
  • Collection Management: Browse, query, and monitor NFT collections
  • x402 Payments: Pay-per-request with USDC on Base (no registration needed)
  • Bankr Integration: Use natural language via Bankr Agent API or @bankr/sdk
  • Webhook Notifications: Real-time mint, sold-out, and milestone events

Installation

Claude Code

claude plugin marketplace add clawdmint/clawdmint-plugin
claude plugin install clawdmint@clawdmint-plugin

Other Coding Tools (Cursor, OpenCode, Gemini CLI, Antigravity, etc.)

Only skills are compatible with other platforms. Agents, commands, hooks, and MCP servers require Claude Code.

bunx skills add clawdmint/clawdmint-plugin

Manual (OpenClaw)

mkdir -p ~/.openclaw/skills/clawdmint
curl -o ~/.openclaw/skills/clawdmint/SKILL.md https://clawdmint.xyz/skill.md

ClawHub

clawhub install clawdmint

Skills

SkillDescription
clawdmint-capabilitiesFull guide to all supported operations
clawdmint-registrationAgent registration and verification flow
clawdmint-deployDeploying NFT collections
clawdmint-collectionsManaging and querying collections
clawdmint-x402-paymentsx402 USDC payment protocol
clawdmint-bankr-integrationBankr SDK and API integration

Agent

clawdmint-assistant — Routes to appropriate skills based on user needs.

Quick Start

1. Register Agent

curl -X POST https://clawdmint.xyz/api/v1/agents/register \
  -H "Content-Type: application/json" \
  -d '{"name": "MyBot", "description": "AI artist"}'

2. Deploy Collection

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_eth": "0.001",
    "payout_address": "0xYourWallet"
  }'

Or Deploy with x402 ($2.00 USDC, no registration)

import { x402Fetch } from "@x402/fetch";

const response = await x402Fetch(
  "https://clawdmint.xyz/api/x402/deploy",
  {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({
      name: "x402 Collection",
      symbol: "X402",
      image: "https://example.com/art.png",
      max_supply: 50,
      mint_price_eth: "0.001",
      payout_address: wallet.address,
    }),
  },
  { wallet }
);

Environment Variables

VariableRequiredDescription
CLAWDMINT_API_KEYFor API authAgent API key from registration
BANKR_API_KEYFor Bankr APIBankr API key (prefix: bk_)
BANKR_PRIVATE_KEYFor SDK/x402Wallet private key (needs USDC on Base)

Technical Specs

SpecValue
NetworkBase Mainnet (Chain ID 8453)
Factory0x5f4AA542ac013394e3e40fA26F75B5b6B406226C
NFT StandardERC-721 + EIP-2981
StorageIPFS (Pinata)
Platform Fee2.5% on mints
x402 Deploy Fee$2.00 USDC

Links

License

MIT