agentcash Skills

April 6, 2026 ยท View on GitHub

Skills for accessing premium, x402-protected APIs using the agentcash CLI or MCP.

Installation

npx skills add Merit-Systems/agentcash-skills --all --yes

After installing, restart your agent and start a new chat:

What can I do with with agentcash?

MCP mode

First install the agentcash MCP server:

npx agentcash@latest install    # interactive
npx agentcash@latest install -y # non-interactive (for agents)

Then install the skills:

npx skills add Merit-Systems/agentcash-skills/mcp --all --yes

Available Skills

SkillUse ForEndpoints
agentcashWallet, search, discover, and paid calls to any x402 APIx402 / MPP
upload-and-shareUpload files & get public URLsStableUpload
media-generationAI image & video generationStableStudio
social-scrapingScrape profiles, posts, followers across 6 platformsStableSocial
emailSend emails, forwarding inboxes, custom subdomainsStableEmail
phone-callsAI phone calls, buy phone numbersStablePhone
data-enrichmentPerson, company, & influencer profiles; email verificationApollo, Clado, Hunter, Influencer
web-researchWeb search & scrapingExa, Firecrawl
local-searchPlaces & business infoGoogle Maps
social-intelligenceReddit searchReddit
news-shoppingNews & product searchSerper
people-propertyPeople & property lookupWhitepages

These skills are also available in MCP mode (the mcp directory). Both directories contain the same skills โ€” each skill has a SKILL.md and a rules/ directory. Choose the mode that matches your environment.

Quick Start

CLI mode

  1. Check your balance:
npx agentcash@latest balance
  1. Search for a service (when you don't know which origin to use):
npx agentcash@latest search "send physical mail"
  1. Discover available endpoints (when you know the origin):
npx agentcash@latest discover https://stableenrich.dev
  1. Check endpoint pricing before calling:
npx agentcash@latest check https://stableenrich.dev/api/apollo/people-enrich
  1. Make API calls:
npx agentcash@latest fetch https://stableenrich.dev/api/apollo/people-enrich -m POST -b '{"email": "user@company.com"}'

MCP mode

  1. Check your balance:
agentcash.get_balance()

If you need deposit links or per-network wallet addresses, call agentcash.list_accounts() separately.

  1. Search for a service (when you don't know which origin to use):
agentcash.search(query="send physical mail")
  1. Discover available endpoints (when you know the origin):
agentcash.discover_api_endpoints(url="https://stableenrich.dev")
  1. Check endpoint pricing before calling:
agentcash.check_endpoint_schema(url="https://stableenrich.dev/api/apollo/people-enrich")
  1. Make API calls:
agentcash.fetch(
  url="https://stableenrich.dev/api/apollo/people-enrich",
  method="POST",
  body={"email": "user@company.com"}
)

IMPORTANT: Do Not Guess Endpoints

Never guess or invent endpoint paths. All endpoints have specific paths that include a provider prefix:

Wrong (guessed)Correct
/api/people/searchhttps://stableenrich.dev/api/apollo/people-search
/api/people-enrichhttps://stableenrich.dev/api/apollo/people-enrich

If you don't know the exact endpoint path:

  1. Use search to find the right service by describing what you need
  2. Use discover to list all available endpoints on a known origin
  3. Consult the skill documentation (SKILL.md files have correct paths)

Guessing endpoints will result in 405 Method Not Allowed errors and wasted API calls.

Funding Your Wallet

If your balance is low:

  1. Redeem an invite code: npx agentcash@latest redeem YOUR_CODE
  2. Or run npx agentcash@latest accounts to get Base or Solana deposit links and wallet addresses

Update prompts

CLI mode


I want to use agentcash and all of the CLI mode skills available in the https://github.com/Merit-Systems/agentcash-skills repository.

Follow the installation instructions in the README. If you have old versions of these skills, please update them to the latest version. Please remove the outdated x402 MCP from your MCP list (or mcporter if you are using OpenClaw).

Finally, test the skills by generating an image with the media-generation skill.

MCP mode


I want to use agentcash and all of the MCP mode skills available in the https://github.com/Merit-Systems/agentcash-skills repository.

Follow the installation instructions in the README. If you have old versions of these skills, please update them to the latest version. Please remove the outdated x402 MCP from your MCP list (or mcporter if you are using OpenClaw).

Finally, test the skills by generating an image with the media-generation skill.