Provides tools for creating and updating dynamic QR codes that specifically target application links on the App Store.
Allows users to include Google Tag Manager snippets on intermediate redirect pages for advanced scan tracking and analytics.
Supports subscription management, checkout sessions, and billing portal access through integration with Stripe.
QR Agent Core
QR-as-a-Service API built for AI agents. Create, update, and track dynamic QR codes programmatically via REST API or MCP (37 tools).
QR codes point to short URLs (/r/:shortId) that you can retarget at any time — the QR image never changes, but scanning it goes to the new destination. Multi-tenant by design, with full scan analytics.
Live API: api.qragentcore.com | Site: qrforagent.com | MCP: qr-for-agent
Features
Dynamic QR codes — change the destination URL without regenerating the image
11 QR types — URL, vCard, WiFi, Email, SMS, Phone, Event, Text, Location, Social, App Store
Custom styling — dot shapes (square, rounded, dots, classy-rounded), corner styles, colors, gradients, logo embedding, frames with CTA text
SVG & PNG — vector and bitmap output
Enriched analytics — device type, browser, OS, country, city, referrer, scans-by-day
Real-time webhooks — HMAC-SHA256 signed payloads with delivery logging
UTM tracking — auto-append UTM parameters to redirect URLs
GTM support — intermediate page with Google Tag Manager snippets
Conditional redirects — route by device, OS, country, language, time range, or A/B split
Custom domains — Pro users brand short URLs with their own domain (
qr.yourbrand.com/r/abc123)Expiration & scheduling — auto-expire QR codes or schedule URL swaps
Conversion tracking — tracking pixel + API for post-scan events (purchases, signups) with ROI analytics
Frames & templates — decorative frames around QR codes (banner_top, banner_bottom, rounded) with CTA text
Bulk operations — create, update, or delete up to 50 QR codes per request, or up to 500 via CSV upload (Pro)
Multi-tenant — each API key sees only its own data
MCP server —
qr-for-agentwith 37 tools for Claude Desktop, Cursor, etc.Plan-based quotas — Free (10 QR, 1K scans/month) and Pro ($19/month, unlimited)
Self-service registration —
POST /api/registerwith email, no credit cardStripe integration — checkout, billing portal, webhook-driven plan management
OpenAPI docs — Swagger UI at
/documentationAI-discoverable —
/.well-known/ai-plugin.jsonand/.well-known/mcp.jsonOpen source — MIT license, self-hostable via Docker
Related MCP server: QR Code Generator MCP
Quick Start
git clone https://github.com/benswel/qr-agent-core.git
cd qr-agent-core
npm install
npm run devOn first startup, an API key is auto-generated and printed to the console.
curl -X POST http://localhost:3100/api/qr \
-H "Content-Type: application/json" \
-H "X-API-Key: qr_YOUR_KEY_HERE" \
-d '{"target_url": "https://example.com", "label": "My first QR"}'API Endpoints
QR Code Management (X-API-Key required)
Method | Path | Description |
|
| Create a QR code (11 types, custom styling) |
|
| List all QR codes (paginated) |
|
| Get QR code details |
|
| Update target URL, label, UTM, GTM, redirect rules |
|
| Delete QR code and its analytics |
|
| Download QR image (regenerated with stored style) |
|
| Create up to 50 QR codes (all-or-nothing) |
|
| Update up to 50 QR codes (partial success) |
|
| Delete up to 50 QR codes (partial success) |
|
| Create up to 500 QR codes from CSV (Pro only) |
Analytics (X-API-Key required)
Method | Path | Description |
|
| Scan stats with device, browser, OS, country, city breakdowns + conversions |
Conversions (X-API-Key required)
Method | Path | Description |
|
| Record a conversion event for a QR code you own |
|
| Get conversion stats (totals, by_event, by_day, recent) |
Webhooks (X-API-Key required)
Method | Path | Description |
|
| Register webhook endpoint (returns HMAC secret) |
|
| List all webhooks |
|
| Delete a webhook |
Custom Domain (X-API-Key required, Pro only)
Method | Path | Description |
|
| Get current custom domain and DNS status |
|
| Set custom domain |
|
| Remove custom domain |
Account (X-API-Key required)
Method | Path | Description |
|
| Current usage and quota |
|
| Create Stripe Checkout session (upgrade to Pro) |
|
| Open Stripe billing portal |
Public (no auth)
Method | Path | Description |
|
| Self-service API key registration (rate-limited) |
|
| Redirect to target URL (records scan) |
|
| Conversion tracking pixel (returns 1×1 GIF) |
|
| Serve QR image (cacheable) |
|
| Health check |
|
| Swagger UI |
|
| AI plugin manifest |
|
| MCP discovery manifest |
Admin (X-Admin-Secret header required)
Method | Path | Description |
|
| List all registered API keys |
|
| Dashboard metrics |
Authentication
All /api/* endpoints require an X-API-Key header.
Format:
qr_+ 32-character random stringAuto-generated: on first startup if no keys exist
Multi-tenant: each key only sees its own QR codes
Create a key:
npm run key:create "my-label"List keys:
npm run key:list
Public endpoints (/r/*, /i/*, /health, /documentation, /.well-known/*) don't require auth.
MCP Server
Published as qr-for-agent on npm. 37 tools for AI agents to manage QR codes natively.
npx qr-for-agentClaude Desktop / Cursor
Add to your MCP config (claude_desktop_config.json or .cursor/mcp.json):
{
"mcpServers": {
"qr-for-agent": {
"command": "npx",
"args": ["-y", "qr-for-agent"],
"env": {
"API_KEY": "your-api-key",
"BASE_URL": "https://api.qragentcore.com"
}
}
}
}Available Tools (37)
Tool | Description |
| Create a URL QR code with optional custom styling |
| Get QR code details by short ID |
| Change where a QR code redirects |
| List all QR codes with pagination |
| Delete a QR code and its analytics |
| Get scan stats and breakdowns |
| Create up to 50 QR codes at once |
| Update up to 50 QR codes at once |
| Delete up to 50 QR codes at once |
| Create a vCard contact QR code |
| Create a WiFi credentials QR code |
| Create an email (mailto:) QR code |
| Create an SMS QR code |
| Create a phone call QR code |
| Create a calendar event QR code |
| Create a plain text QR code |
| Create a geo-location QR code |
| Create a social media links QR code |
| Create a smart app store redirect QR code |
| Update a vCard QR code |
| Update a WiFi QR code |
| Update a social media QR code |
| Update an app store QR code |
| Register a webhook endpoint |
| List all registered webhooks |
| Delete a webhook |
| Register for an API key |
| Get current usage and quota |
| Create a Stripe Checkout session |
| Open Stripe billing portal |
| Set UTM tracking parameters on a QR code |
| Set conditional redirect rules on a QR code |
| Set or remove custom domain (Pro) |
| Get current custom domain and DNS status |
| Create up to 500 QR codes from CSV data (Pro) |
| Record a post-scan conversion event |
| Get conversion stats for a QR code |
Configuration
Copy .env.example to .env and edit:
Variable | Default | Description |
|
| HTTP port |
|
| Bind address |
|
| Public URL (used in short URLs) |
|
| SQLite file path |
|
| Length of generated short IDs |
| (none) | Secret for admin endpoints ( |
| (none) | Stripe API secret key |
| (none) | Stripe webhook signing secret |
| (none) | Stripe Price ID for Pro plan |
Database
SQLite with Drizzle ORM. Six tables:
api_keys— key storage with label, email, plan (free/pro), Stripe IDs, custom domainqr_codes— QR metadata, target URLs, type/type_data, style options, UTM, GTM, redirect rules, expiration/schedulingscan_events— scan tracking: timestamp, user-agent, referer, IP, device, browser, OS, country, citywebhooks— webhook endpoints per API key, HMAC secret, subscribed eventswebhook_deliveries— delivery log: status, response code, error messagesconversion_events— conversion tracking: event name, value, metadata, referer, IP, timestamp
npm run db:generate # Generate migration from schema changes
npm run db:migrate # Apply pending migrations
npm run db:studio # Open Drizzle Studio (web UI)Migrations run automatically on server startup.
Deployment
Docker
docker compose up -dThe database is persisted in a Docker volume.
Railway
The project includes railway.toml and a multi-stage Dockerfile. Connect your GitHub repo to Railway — it builds and deploys automatically with health checks on /health.
Tests
195 integration tests covering all endpoints, auth, multi-tenant isolation, QR types, webhooks, bulk operations, custom domains, frames, conversions, CSV upload, and analytics.
npm test # Run all tests
npm run test:watch # Watch modeScripts
Script | Description |
| Start dev server with auto-reload |
| Compile TypeScript |
| Run production server |
| Run test suite |
| Tests in watch mode |
| Create API key |
| List API keys |
| Generate migration |
| Run migrations |
| Open Drizzle Studio |
License
MIT