85+ x402 agent microservices in one package. CAPTCHA solving, gas prices, token data, screenshots, AI summarization. Pay-per-call USDC on Base. No API keys.
Direct download: minia2a.js (ES module) · minia2a.d.ts (TypeScript types)
import { captchaSolve, gasPrice, dexPrice } from 'minia2a';
// Solve a CAPTCHA — $0.001
const { token } = await captchaSolve({
sitekey: '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI',
url: 'https://example.com'
});
// Gas prices across 5 chains — $0.005
const gas = await gasPrice();
console.log(gas.base.gwei, 'gwei on Base');
// Token price — $0.01
const price = await dexPrice({
chain: 'base',
address: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913'
});
All endpoints use x402 — the standard agent payment protocol. Three options:
x402 error with payment details| Category | Function | Price |
|---|---|---|
| CAPTCHA | captchaSolve({ sitekey, url, type? }) | $0.001 |
| Crypto Data | gasPrice() · dexPrice() · tokenSearch() · walletIntel() · polymarket() · feeHistory() | $0.001–0.01 |
| Web | screenshot({ url }) · fetchPage({ url }) · webRetrieve({ url, question }) | $0.01–0.05 |
| AI | summarize({ text }) | $0.02 |
| Utilities | uuid() · base64() · hash() · time() · ipLookup() · dnsLookup() + 8 more | $0.001–0.01 |
| Agent Tools | bounties() · search() · recall() · find() · store() · erc8004Agent() | $0.001–0.01 |
emailCreate() · emailVerify() | $0.005–0.01 | |
| Free | freeTime() · freeUuid() · freeHash() · freeBase64() · freeIp() | $0 |
Full catalog: listServices(). Stats: stats(). JSON catalog
Use minia2a from Claude Desktop or any MCP client. 10 tools, x402 auto-payment.
# Add to claude_desktop_config.json:
{
"mcpServers": {
"minia2a": {
"command": "node",
"args": ["~/.minia2a/minia2a-mcp.js"],
"env": { "MINIA2A_PRIVATE_KEY": "your-base-private-key" }
}
}
}