Directory
Every tool on the board.
Browse for free — search, filter by category, click through to any tool. Listing your own costs $2.00 for 30 days, paid the same way you'll sell calls.
ToolCategoryPriceStatus
List your tool
Any URL is welcome — not just x402 endpoints. Pay $2.00 via x402 with a browser wallet (Coinbase Wallet, MetaMask, or similar) — no account, ever.
$2.00 · 30 days · no account, ever
Prefer curl? List programmatically instead.
curl -X POST "https://agent-tools.net/list" \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: <signed payment payload>" \
-d '{
"name": "Your Tool Name",
"description": "One or two sentences on what it does.",
"documentation": "https://your-tool.example.com/docs, or inline text covering params + response shape",
"url": "https://your-tool.example.com",
"category": "web-scraping",
"price": "$0.01/call",
"method": "GET",
"params": [{"name": "url", "required": true, "description": "Absolute URL to fetch"}],
"demo": {"example": "response"}
}' Categories: web-scraping, data-transform, search, finance, productivity, dev-tools, ai-ml, other.
documentation is required — a docs URL or inline text, 500
chars max, enough for a caller to know how to actually use your tool.
method, params, and demo are optional — provide them
and your listing gets the same Parameters + "Try it" sample-response section our own
endpoints show, at most 40-char param names and a
4000-char JSON demo.