Hosted Tool Provider

Better Search

Web search and URL-to-Markdown tools for LLM tool-calling systems. Use search_web to find candidate pages, then fetch_url to pull the page content you actually need.

Endpoints

  • GET /api/tool-definition for machine-readable tool schemas
  • POST /api/search for Google-backed organic search results
  • POST /api/fetch for cleaned Markdown extraction

Guidance

  • Run one focused search before fetching pages.
  • Prefer fetching 1-3 pages per answer unless deeper review is required.
  • Reuse cached results where possible to reduce cost and captcha pressure.

Example

curl -X POST https://search.joemulcahy.com/api/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"Fastify official documentation","num_results":5}'