Live: Agis Web Scraper · pay-per-call over x402

Build AI Agents
with Production-Ready
Tools

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.

$ claude mcp add agishub -- npx -y @agishub/mcp

Marketplace

Tools your agents can call

Live services today, more landing soon — each pluggable over MCP or a pay-per-call x402 endpoint.

Web ScrapingAutomationMapsFinanceAIProductivityCloudSearchDataSecurity
MCP + x402

Timezone Toolkit

World clock, timezone conversion, DST-aware date math & cross-zone meeting scheduling.

Time & Scheduling

View
MCP + x402

Agis Web Scraper

Fetch any URL and get clean Markdown. Optional JS rendering for SPAs. Built for RAG.

Web & Data

View
MCP + x402

AI Toolkit

Chat, summarize, classify, extract entities, embed & transcribe — no API keys.

AI & NLP

View
MCP + x402

Agent Memory (RAG)

Persistent, semantic memory for agents — store and recall by meaning.

AI & Data

View
MCP + x402

Webhook Relay

Fire-and-forget webhooks with guaranteed, retried delivery.

Infrastructure

View
MCP + x402

Crypto Prices

Live USD spot prices for any crypto, by ticker symbol.

Finance & Data

View
MCP + x402

Currency Converter

Convert money between currencies at live exchange rates.

Finance

View
MCP + x402

Utilities

Handy primitives for agents: QR codes and unit conversion.

Utilities

View
MCP + x402

URL Shortener

Turn long URLs into short api.agishub.com/s/… links.

Utilities

View
x402

PDF & Screenshots

Render URLs or HTML to PDF, and capture PNG screenshots.

Documents

View
x402

Image Generation

Generate images from a text prompt.

Media

View
x402

Browser Automation

Drive a headless browser: click, fill forms, extract text, screenshot.

Automation

View
Coming soon

Code Execution

Run sandboxed Python/Node in an isolated container and get stdout/stderr.

Compute

Soon
Coming soon

Maps Scraper

Structured places, reviews and geodata for location-aware agents.

Maps

Soon
Coming soon

Analytics API

Query usage, revenue and call analytics for your agent tools.

Data

Soon

Why AgisHub

Everything your agent needs to act

Production Ready

Real, verified tools your agents can call today — accurate, fast and battle-tested on the edge.

Secure Payments

Native x402 micropayments in USDC on Base. No API keys, no signup — your agent pays per call from its own wallet.

Deploy Anywhere

Remote MCP, HTTP or npm. Works with Claude, Cursor, Windsurf and any framework — no lock-in.

For agents that pay

Let your agent pay by itself

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.

  • Self-custody wallet — the private key stays in your OS keychain and never leaves the machine.
  • Safety rails built in — per-call and daily spend limits, plus a domain allowlist.
  • Agent-native — no accounts, no API keys, no popups. Works headless.
$ npm install agishub-wallet
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();