CLI for discovering and installing xpay skills for AI agents.
Skills are SKILL.md files that teach AI agents (Claude Code, OpenClaw, Cursor) when and how to use pay-per-use tools through xpay's MCP proxy.
npm install -g @xpaysh/cliOr use directly with npx:
npx @xpaysh/cli search firecrawlxpay search <query># Install a provider skill (all tools)
xpay install firecrawl
# Install a specific tool skill
xpay install firecrawl/scrape
# Install a collection skill
xpay install --collection web-scraping-toolkitThe CLI auto-detects your AI agent (Claude Code, OpenClaw, Cursor) and writes the SKILL.md to the correct directory.
# List installed skills
xpay list
# List all available skills from xpay.tools
xpay list --remotexpay config set api-key YOUR_API_KEY- Skills are fetched from
https://xpay.tools/skills/{provider}/{tool}/SKILL.md - Written to your agent's skills directory (e.g.,
~/.claude/skills/) - Your AI agent reads the SKILL.md to learn when and how to use the tool
- Tool execution goes through xpay's MCP proxy — no direct API calls needed
After installing skills, make sure your agent has the xpay MCP server configured:
# Claude Code
claude mcp add --transport http xpay "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"Get your API key at xpay.tools — $5 free credits included.
MIT