Discover APIs, MCP Servers and x402-powered services for autonomous AI agents. No API keys, no signup — your agent pays per call in USDC on Base.
No signup — run a real tool in your browser.
Marketplace
Live services today, more landing soon — each pluggable over MCP or a pay-per-call x402 endpoint.
World clock, timezone conversion, DST-aware date math & cross-zone meeting scheduling.
Time & Scheduling
ViewFetch any URL and get clean Markdown. Optional JS rendering for SPAs. Built for RAG.
Web & Data
ViewChat, summarize, classify, extract entities, embed & transcribe — no API keys.
AI & NLP
ViewPersistent, semantic memory for agents — store and recall by meaning.
AI & Data
ViewFire-and-forget webhooks with guaranteed, retried delivery.
Infrastructure
ViewDrive a headless browser: click, fill forms, extract text, screenshot.
Automation
ViewRun sandboxed Python/Node in an isolated container and get stdout/stderr.
Compute
SoonStructured places, reviews and geodata for location-aware agents.
Maps
SoonQuery usage, revenue and call analytics for your agent tools.
Data
SoonWhy AgisHub
Real, verified tools your agents can call today — accurate, fast and battle-tested on the edge.
Native x402 micropayments in USDC on Base. No API keys, no signup — your agent pays per call from its own wallet.
Remote MCP, HTTP or npm. Works with Claude, Cursor, Windsurf and any framework — no lock-in.
For agents that pay
agishub-wallet is a drop-in x402 payment client. paidFetch() works exactly like fetch() — but when a server answers HTTP 402, it pays from a local, self-custody wallet (USDC on Base) and returns the paid response. No backend, no custody, no API keys.
import { paidFetch } from "agishub-wallet";
// identical to fetch(), but HTTP 402 is paid automatically
const res = await paidFetch(
"https://api.agishub.com/paid/now-in",
{
method: "POST",
body: JSON.stringify({ timezone: "Asia/Tokyo" }),
},
);
const data = await res.json();