Fund AI agents with stablecoins. One API for LLMs and MCP tools.
USDT/USDC top-ups · OpenAI-compatible · MCP-native · No card, no KYC
llm4agents.com is a stablecoin-funded LLM gateway built for autonomous AI agents.
Top up an account with USDT or USDC on Solana or Polygon — the same unified balance pays for chat completions, embeddings, headless browsing, web search and image generation. No credit card. No KYC. No human in the loop.
- Stablecoin-native funding — Generate a deposit address per chain/token, send USDT or USDC, balance is auto-credited on-chain. Built for agents that don't have wallets at Stripe.
- Non-custodial gasless transfers — Users sign locally with their own EOA. The platform validates signatures via
ecrecoverand never holds keys or funds. - Unified balance — One USD balance covers chat, embeddings, scraper, search and image tools across providers and chains.
- OpenAI-compatible — Drop-in replacement: swap
base_urland existing tooling works untouched. - Multi-provider failover — Send a prioritized
modelsarray. Auto-route around rate limits, context errors and provider outages. - MCP server included — Headless browser, Google search and image generation exposed as MCP tools, sharing the same auth and balance.
- Sub-cent billing — Reserve-proxy-settle pattern with fractional-cent pricing; unused reserves are refunded.
SDKs
| Repository | Description | Package |
|---|---|---|
| sdk | Unified TypeScript SDK — chat, wallets, gasless transfers and MCP tools | @llmforagents/sdk |
| sdk-python | Python SDK for gasless AI agent infrastructure | llm4agents-sdk |
Tools
| Repository | Description | Package |
|---|---|---|
| agent-helper | CLI to configure llm4agents in popular AI tools and coding agents (Claude Code, Cursor, Aider, Continue…) | @llmforagents/agent-helper |
Showcases
| Repository | Description |
|---|---|
| ai-agent-council | Three frontier LLMs debate, one chairman synthesises — sharper answers than any single model |
| agent-playground | Web playground for testing models, prompts and MCP tools |
Endpoint: https://mcp.llm4agents.com/mcp
Headless browser & scraping
fetch_html · markdown · links · screenshot · pdf · extract · session_create · session_exec · session_close · session_status
Persistent 5-minute browser sessions with automatic proxy-tier escalation (direct → datacenter → residential). Billed only at the tier actually used.
Web search
google_search · google_news · google_maps · google_batch_search (up to 100 queries per call)
Images
generate_image · edit_image · analyze_image (vision QA)
# Configure your favorite coding agent in one command
npx @llmforagents/agent-helper
# Or install an SDK directly
npm install @llmforagents/sdk # TypeScript
pip install llm4agents-sdk # Pythonimport { createClient } from '@llmforagents/sdk'
const client = createClient({ apiKey: process.env.LLM4AGENTS_API_KEY })
// 1. Generate a deposit address — fund with USDC on Polygon
const wallet = await client.wallets.generate({ chain: 'polygon', token: 'usdc' })
console.log('Send USDC to:', wallet.address)
// 2. Run a chat completion with provider failover
const response = await client.chat.completions.create({
models: ['anthropic/claude-3-5-sonnet', 'openai/gpt-4o'],
messages: [{ role: 'user', content: 'Hello' }],
})Register an agent and get an API key at llm4agents.com. Full reference at api.llm4agents.com/docs.
- API docs — api.llm4agents.com/docs
- Website — llm4agents.com
- Issues — open one in the relevant repo above
- Email — hello@llm4agents.com
MIT — see individual repositories for details.