Config is the same across clients — only the file and path differ.
{
"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.
QR-as-a-Service API built for AI agents. Create, update, and track dynamic QR codes programmatically via REST API or MCP (37 tools).
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:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked qr-for-agent against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics / marketing
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
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 |
|---|