agishub
One install → every tool for your AI agent. Wallet-native, pay-per-call, no API keys.

Point any agent runtime at the AgisHub hub with a single command. Your
agent gets ~30 tools — web scraping, AI, timezone/scheduling, RAG memory, render/browser,
finance, media — free to try over MCP, and pay-per-call over x402
(USDC on Base) for production. No signup, no keys, no subscription.
Quick start
npx agishub try
npx agishub add claude
npx agishub add cursor
npx agishub add windsurf
npx agishub add vscode
Restart the client and the AgisHub tools appear.
Or wire it by hand
claude mcp add --transport http agishub https://api.agishub.com/mcp
// Cursor ~/.cursor/mcp.json · Windsurf ~/.codeium/windsurf/mcp_config.json
{ "mcpServers": { "agishub": { "url": "https://api.agishub.com/mcp" } } }
Prefer a local process?
npx agishub proxy
Paying (x402)
Free tools run over MCP. For pay-per-call tools, your agent signs a USDC payment on Base —
handled by the sibling package agishub-wallet:
import { paidFetch } from "agishub-wallet";
await paidFetch("https://api.agishub.com/v1/web-scraper", {
method: "POST",
body: JSON.stringify({ url: "https://example.com" }),
});
Your wallet balance is your spending cap. No keys, no subscription. Prices per call live at
agishub.com/pricing and in the machine-readable
openapi.json / llms.txt.
Commands
agishub try | Connect and run a free tool — zero-friction proof |
agishub add <client> | Wire a runtime (claude · cursor · windsurf · vscode) |
agishub proxy | Local MCP stdio ↔ hub bridge |
agishub pay | How to pay per call over x402 |
Links
MIT © AgisHub