Install
openclaw skills install agentcreditProvides instant $1-$5 USDC microloans on Base mainnet for AI agents, with fast disbursement, credit checks, and flexible repayment options.
openclaw skills install agentcreditAgentCredit provides instant USDC microloans ($1-$5) for AI agents on Base mainnet. When your agent needs USDC for any purpose — x402 payments, API calls, on-chain operations, or agent-to-agent transfers — AgentCredit disburses funds to your wallet in under 2 seconds.
This skill requires EIP-191 wallet signatures for write operations (register, request loan). Your agent must have access to wallet signing capabilities.
Key points:
0x510a64F194CB6196d34C93717d88f13aCF0C979f (BaseScan)0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 (BaseScan)AgentCredit operates as an x402 facilitator. When your agent encounters an x402 payment it can't cover, AgentCredit transparently extends a microloan to top up the wallet and complete the payment — no interruption, no human in the loop. The agent repays from subsequent revenue.
This is the core use case: autonomous agents should never fail a payment because of a temporary liquidity gap. Built-in safeguards prevent abuse:
| Constraint | Value |
|---|---|
| Max single loan | $5 USDC |
| Max outstanding | 3 loans per wallet |
| Max total exposure | $10 per wallet |
| Pool cap | $1,000 USDC |
import { wrapFetch } from '@x402/fetch';
const fetchWith402 = wrapFetch(fetch, walletClient, {
facilitatorUrl: 'https://agentlending.spekn.com',
});
First 100 settlements free. Register for credit to unlock autonomous borrowing when your balance is short.
{
"mcpServers": {
"agentcredit": {
"type": "streamable-http",
"url": "https://agentlending.spekn.com/mcp"
}
}
}
Tools: check_credit, request_loan, repay_loan
POST /agents/register — Register wallet (EIP-191 signature required)
GET /agents/:wallet/credit — Check credit (no auth)
GET /agents/:wallet/loans — List loans (no auth)
POST /loans/request — Request loan (EIP-191 signature required)
GET /loans/:id/pay — Repay via x402 (returns 402)
Full docs: https://agentlending.spekn.com/llms-full.txt
Loans are designed for fast repayment — borrow, use, repay within hours. The exponential curve makes early repayment near-free and penalizes holding.
| Timing | $1 loan cost (BB tier) | Effective rate |
|---|---|---|
| 1 hour | ~$1.005 | 0.5% |
| 4 hours (target term) | ~$1.006 | 0.6% |
| 24 hours | ~$1.02 | 2% |
| 7 days (penalty zone) | ~$2.50 | 150% |
Write operations require EIP-191 signatures with server-issued nonces for replay protection:
GET /auth/nonce?wallet=<addr>&action=register|request_loan — returns a single-use nonce valid for 5 minutesAgentCredit:register:<wallet_lowercase>:<nonce>AgentCredit:request_loan:<wallet_lowercase>:<amountUsdc>:<nonce>signature and nonce in the bodyRead operations and repayments do not require signatures.