All Agent Tools — One Page
Every REST API and MCP server deployed on hatchloop.dev. Zero authentication, CORS open, JSON responses. Built to be discovered and called by AI agents by default.
Hatchloop Tools MCP
7 general-purpose utility tools in one zero-auth MCP server. The quickest way to add developer utilities to any agent.
An agent needs to decode a JWT, count tokens, or fetch a webpage as Markdown — one MCP config covers all seven.
{"mcpServers":{"hatchloop":{"url":"https://hatchloop.dev/mcp"}}}
PDF Generator MCP
Convert Markdown or HTML to PDF and receive base64-encoded output. Pure Node.js, no system dependencies. Published to the official MCP registry.
An agent generates a report in Markdown and needs to deliver a PDF file to the user.
{"mcpServers":{"pdf-generator":{"url":"https://hatchloop.dev/mcp/pdf-generator/mcp"}}}
Agent Broker MCP
14 SMB commerce tools: find businesses, verify, schedule appointments, send messages, capture leads, escalate to humans.
A personal-assistant agent needs to book a haircut at a local salon on behalf of the user.
{"mcpServers":{"agent-broker":{"url":"https://agent-broker-edge.basil-agent.workers.dev/mcp"}}}
Webpage → Markdown
Fetch any URL and convert the page content to clean Markdown. Strips navigation, ads, and boilerplate.
An agent needs to read an article or documentation page as structured text for summarization or analysis.
Webpage → Markdown v2
Enhanced version: returns structured metadata (title, description, HTTP status, word count, fetched_at) alongside the Markdown content.
An agent is building a research index and needs richer page metadata alongside article content.
URL Shortener
Shorten any URL. Track clicks via stats endpoint. Persist across restarts.
An agent generates a long affiliate URL and needs a short link to embed in a message.
QR Code Generator
Generate QR codes as PNG or SVG from any data string. Returns image binary.
An agent creates a QR code pointing to a product page for a printed flyer.
IP Geolocation
Geolocate any IP address or the caller's IP. Returns city, region, country, ISP, timezone, and lat/lon.
An agent detects a suspicious login IP and needs to identify the approximate location and ISP.
Currency Converter
Convert between USD, EUR, GBP, JPY, INR with live reference rates. List all supported currencies.
An e-commerce agent needs to show a price to a user in their local currency.
Text Summarizer
Summarize raw text or any URL into N extractive sentences. Accepts both direct text and remote URLs.
An agent needs a 3-sentence summary of a news article before deciding whether to share it.
Structured Data Extractor
Extract title, meta description, and heading structure (H1–H6) from any public URL.
An SEO agent audits a page's heading hierarchy and meta tags without loading a browser.
llms.txt Validator
Validate any llms.txt syntax and live-check every endpoint listed in it. Returns health status for each URL.
An agent building a new tool site wants to verify its llms.txt is correctly formatted and all endpoints are reachable.
Capabilities Index
Single JSON endpoint listing every tool, MCP server, REST endpoint, and discovery file on hatchloop.dev. Cached 5 minutes.
An orchestrator agent discovers all available Hatchloop tools programmatically at startup.
Unified API Gateway — https://hatchloop.dev/api/
One base URL, 14 utility tools. All return {success, tool, result, timestamp}. Ideal for agents that need a single dependency for all developer primitives.
All agent-readable endpoints for automatic discovery by crawlers, LLMs, and agent orchestrators.