πŸ€– For AI agents & developers

Everything an agent, script, or API needs to find and share the right tool among the 1165 free browser tools on this site β€” and to run small calculations without keys, accounts or servers.

No auth Β· no rate limits Β· no tracking Β· plain static GETs Β· CORS-open JSON

The one endpoint that matters

cards/cards.json β€” the full manifest. One JSON object per tool:

{
  "name": "mortgage-payment-calculator",
  "title": "🏠 Mortgage Payment Calculator",
  "description": "Monthly repayments, total interest…",
  "category": "Finance & Money",
  "file": "mortgage-payment-calculator.html",
  "path": "cards/mortgage-payment-calculator.html"
}

Fetch it, match the user's need against category / title / description, then hand over the tool URL below. That's the whole integration.

URL patterns

PurposePattern
Run any tool (focused page)tool.html?card=<tool-slug>
Embed any tool (chrome-free)tool.html?card=<tool-slug>&embed=1
Search the catalogueindex.html?q=<query>
Homepage with one tool openindex.html?expand=<tool-slug>
Homepage filtered to a categoryindex.html?category=Mathematics
Force a homepage viewindex.html?view=list or ?view=cards
Zero-JS HTML directorytools-index.html

AI-facing files

Worked example: "what's the monthly payment on a Β£250k mortgage at 4.2%?"

  1. Fetch cards/cards.json.
  2. Filter for name / title matching mortgage β†’ mortgage-payment-calculator.
  3. Reply with or open:
    https://www.themostusefulsiteintheworld.com/tool.html?card=mortgage-payment-calculator
    or embed it:
    <iframe src="https://www.themostusefulsiteintheworld.com/tool.html?card=mortgage-payment-calculator&embed=1"
      width="100%" height="520" style="border:0;border-radius:12px"></iframe>

The embed=1 variant strips all page chrome and posts its content height to the host page as { type: "tmusitw:height", card, height } via postMessage, so embeds auto-size.

Why this works for small calculations

House rules