Dynamic QR codes for AI agents — custom styling, scan tracking, webhooks
{
"mcpServers": {
"qr-for-agent": {
"env": {
"API_KEY": "your-api-key",
"BASE_URL": "https://api.qragentcore.com"
},
"args": [
"-y",
"qr-for-agent"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Dynamic QR codes for AI agents — custom styling, scan tracking, webhooks
Is it safe?
No known CVEs for qr-for-agent.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 12 days ago. 1 stars. 28 weekly downloads.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
16 tools. ~600 tokens (0.3% of 200K).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'qr-for-agent' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
create_qr_codeCreate a URL QR code with optional custom styling
get_qr_codeGet QR code details by short ID
update_qr_destinationChange where a QR code redirects
list_qr_codesList all QR codes with pagination
delete_qr_codeDelete a QR code and its analytics
get_qr_analyticsGet scan stats and breakdowns
bulk_create_qr_codesCreate up to 50 QR codes at once
bulk_update_qr_codesUpdate up to 50 QR codes at once
bulk_delete_qr_codesDelete up to 50 QR codes at once
create_vcard_qrCreate a vCard contact QR code
This server is missing a description.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for io.github.benswel/qr-for-agent and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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
qr.yourbrand.com/r/abc123)qr-for-agent with 37 tools for Claude Desktop, Cursor, etc.POST /api/register with email, no credit card/documentation/.well-known/ai-plugin.json and /.well-known/mcp.jsongit clone https://github.com/benswel/qr-agent-core.git
cd qr-agent-core
npm install
npm run dev
On 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"}'
X-API-Key required)| Method | Path | Description |
|--------|------|-------------|
| POST | /api/qr | Create a QR code (11 types, custom styling) |
| GET | /api/qr | List all QR codes (paginated) |
| GET | /api/qr/:shortId | Get QR code details |
| PATCH | /api/qr/:shortId | Update target URL, label, UTM, GTM, redirect rules |
| DELETE | /api/qr/:shortId | Delete QR code and its analytics |
| GET | /api/qr/:shortId/image | Download QR image (regenerated with stored style) |
| POST | /api/qr/bulk | Create up to 50 QR codes (all-or-nothing) |
| PATCH | /api/qr/bulk | Update up to 50 QR codes (partial success) |
| DELETE | /api/qr/bulk | Delete up to 50 QR codes (partial success) |
| POST | /api/qr/bulk/csv | Create up to 500 QR codes from CSV (Pro only) |
X-API-Key required)| Method | Path | Description | |--------|------|--