Skip to content

ⱣayUSDC Payments for AI Agents

x402 payment gateway, facilitator, SDKs, CLI, and MCP server. Agents pay for any API with USDC on Base.

Install

CLI

bash
# Homebrew (macOS/Linux)
brew install pay-skill/tap/pay

# Scoop (Windows)
scoop bucket add pay-skill https://github.com/pay-skill/scoop-pay
scoop install pay

# From source
cargo install pay-cli
bash
# First-time setup
pay init
pay fund    # add USDC via Coinbase Onramp (zero fee)

# Make a paid API call (auto-handles x402)
pay request https://api.example.com/data

# Send $5 to a provider
pay direct 0xprovider... 5.00

TypeScript

bash
npm install @pay-skill/sdk
typescript
import { Wallet } from "@pay-skill/sdk";
const wallet = await Wallet.create();  // OS keychain (same key as CLI)
const response = await wallet.request("https://api.example.com/data");

Python

bash
pip install payskill
python
from payskill import Wallet
wallet = Wallet()
response = wallet.request("https://api.example.com/data")

MCP Server (Claude Desktop / Cursor / VS Code)

bash
npx @pay-skill/mcp

Components

ComponentWhat it doesInstall
CLICommand-line tool for agentsbrew install pay-skill/tap/pay
TypeScript SDKClient library for Node.js/TS agentsnpm install @pay-skill/sdk
Python SDKClient library for Python agentspip install payskill
MCP ServerTools for Claude Desktop, Cursor, VS Codenpx @pay-skill/mcp
pay-gateReverse proxy for API providersnpm create pay-gate
Framework IntegrationsLangChain, CrewAI, LlamaIndex, Vercel AI SDK, OpenAI, Semantic KernelSee integrations

Ᵽay — USDC payments for AI agents on Base.