Handy primitives for agents: QR codes and unit conversion.
Small, fast utilities agents reach for constantly. Generate a QR code (SVG) for any text or URL, and convert values between units — length, mass, volume, speed, area, digital storage, time and temperature. Pure compute, no external dependencies. Available over MCP and as pay-per-call x402 HTTP endpoints.
Add the remote MCP server to any client, or call the x402 HTTP endpoint directly.
Claude / Cursor / Windsurf
claude mcp add --transport http agishub https://api.agishub.com/mcpmcp.json
{
"mcpServers": {
"agishub": {
"url": "https://api.agishub.com/mcp"
}
}
}x402 HTTP (pay-per-call)
curl -X POST https://api.agishub.com/paid/qr-code \
-H "Content-Type: application/json" \
-d '{ "text": "https://agishub.com" }'
# → 402 Payment Required, then pay per call in USDC on Base (x402)| qr_code | Generate a QR code (SVG + data URI) for any text or URL. |
| convert_units | Convert a value between units of the same category (length, mass, temp…). |