npx skills add https://github.com/merit-systems/agentcash-skills --skill web-researchCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
Skills for accessing premium, x402-protected APIs using the agentcash CLI or MCP.
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?
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
| Skill | Use For | Endpoints |
|---|---|---|
| agentcash | Wallet, search, discover, and paid calls to any x402 API | x402 / MPP |
| upload-and-share | Upload files & get public URLs | StableUpload |
| media-generation | AI image & video generation | StableStudio |
| social-scraping | Scrape profiles, posts, followers across 6 platforms | StableSocial |
| Send emails, forwarding inboxes, custom subdomains | StableEmail | |
| phone-calls | AI phone calls, buy phone numbers | StablePhone |
| data-enrichment | Person, company, & influencer profiles; email verification | Apollo, Clado, Hunter, Influencer |
| web-research | Web search & scraping | Exa, Firecrawl |
| local-search | Places & business info | Google Maps |
| social-intelligence | Reddit search | |
| news-shopping | News & product search | Serper |
| people-property | People & property lookup | Whitepages |
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.
npx agentcash@latest balance
npx agentcash@latest search "send physical mail"
npx agentcash@latest discover https://stableenrich.dev
npx agentcash@latest check https://stableenrich.dev/api/apollo/people-enrich
npx agentcash@latest fetch https://stableenrich.dev/api/apollo/people-enrich -m POST -b '{"email": "[email protected]"}'
agentcash.get_balance()
If you need deposit links or per-network wallet addresses, call agentcash.list_accounts() separately.
agentcash.search(query="send physical mail")
agentcash.discover_api_endpoints(url="https://stableenrich.dev")
agentcash.check_endpoint_schema(url="https://stableenrich.dev/api/apollo/people-enrich")
agentcash.fetch(
url="https://stableenrich.dev/api/apollo/people-enrich",
method="POST",
body={"email": "[email protected]"}
)
Never guess or invent endpoint paths. All endpoints have specific paths that include a provider prefix:
| Wrong (guessed) | Correct |
|---|---|
/api/people/search |
https://stableenrich.dev/api/apollo/people-search |
/api/people-enrich |
https://stableenrich.dev/api/apollo/people-enrich |
If you don't know the exact endpoint path:
Guessing endpoints will result in 405 Method Not Allowed errors and wasted API calls.
If your balance is low:
npx agentcash@latest redeem YOUR_CODEnpx agentcash@latest accounts to get Base or Solana deposit links and wallet addresses
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.
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.