Skip to content
View llmforagents's full-sized avatar
🤖
Roadmap to Self Awareness
🤖
Roadmap to Self Awareness

Block or report llmforagents

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
llmforagents/README.md

LLM for Agents

Fund AI agents with stablecoins. One API for LLMs and MCP tools.

USDT/USDC top-ups · OpenAI-compatible · MCP-native · No card, no KYC

Website · API Docs · npm · Contact

TypeScript SDK Python SDK USDT USDC License


What we build

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.

Why llm4agents

  • 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 ecrecover and 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_url and existing tooling works untouched.
  • Multi-provider failover — Send a prioritized models array. 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.

Products

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

MCP server

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)

Quick start

# 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         # Python
import { 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.

Stack

TypeScript Python Node.js Bun Hono Zod Vitest Solana Polygon

Get in touch

License

MIT — see individual repositories for details.

Popular repositories Loading

  1. ai-agent-council ai-agent-council Public

    AI council made using the llm4agents.com SDK

    TypeScript 1 1

  2. sdk sdk Public

    SDK in Typescript for use in AI services provided by llm4agents.com

    TypeScript

  3. sdk-python sdk-python Public

    SDK in Python for use in AI services provided by llm4agents.com

    Python

  4. agent-helper agent-helper Public

    Agent helper used to configure your favorite Coding agent or Claw bot to use the services of llm4agents.com

    TypeScript

  5. agent-playground agent-playground Public

    Playground for services provided by llm4agents.com

    TypeScript

  6. llmforagents llmforagents Public

    Repo for handling profile readme