Agent QR provides QR code generation specifically designed for AI agents — Claude, ChatGPT, Cursor, and custom agents. Agents generate QR codes programmatically with zero friction. First call auto-provisions an API key, no signup required.
Install via npx for Claude Code, Cursor, or any MCP-compatible client. Tools: generate_qr_code, generate_qr_batch.
POST to api.agentqr.tools/v1/qr and get a QR code back. No API key needed for the first call.
npx @agent-qr/cli generate --url "..." — generate QR codes from the terminal.
Serves llms.txt, skill.md, openapi.json, and .well-known/mcp.json for AI agent discovery.
Add the MCP server to your client config:
{
"mcpServers": {
"agent-qr": {
"command": "npx",
"args": ["-y", "@agent-qr/mcp"]
}
}
}
Or call the API directly:
curl -X POST https://api.agentqr.tools/v1/qr \
-H "Content-Type: application/json" \
-d '{"data": "https://example.com", "size": 300}'