QR-as-a-Service infrastructure for AI agents — generate, manage, and track QR codes programmatically.
QR-as-a-Service infrastructure for AI agents — generate, manage, and track QR codes programmatically. The qr agent core mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
QR-as-a-Service API built for AI agents. Create, update, and track dynamic QR codes programmatically via REST API or MCP (37 tools).
Everything the assistant can do here goes through one of these:
Method — PathPOST — /api/qrGET — /api/qrPATCH — /api/qr/:shortIdDELETE — /api/qr/:shortIdPUT — /api/domaincreate_qr_code — Create a URL QR code with optional custom stylingget_qr_code — Get QR code details by short IDupdate_qr_destination — Change where a QR code redirectslist_qr_codes — List all QR codes with paginationdelete_qr_code — Delete a QR code and its analyticsget_qr_analytics — Get scan stats and breakdownsYou will need 7 environment variables: API_KEY, BASE_URL, DATABASE_URL, ADMIN_SECRET, STRIPE_SECRET_KEY, STRIPE_WEBHOOK_SECRET, STRIPE_PRICE_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at qr-for-agent on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Qr Agent Core's toolset — Method, POST, GET and 11 more — is a fair guide to whether it matches your workflow. It is maintained by benswel; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| Method | Path |
| POST | /api/qr |
| GET | /api/qr |
| PATCH | /api/qr/:shortId |
| DELETE | /api/qr/:shortId |
| PUT | /api/domain |
| create_qr_code | Create a URL QR code with optional custom styling |
| get_qr_code | Get QR code details by short ID |
| update_qr_destination | Change where a QR code redirects |
| list_qr_codes | List all QR codes with pagination |
| delete_qr_code | Delete a QR code and its analytics |
| get_qr_analytics | Get scan stats and breakdowns |
| bulk_create_qr_codes | Create up to 50 QR codes at once |
| bulk_update_qr_codes | Update up to 50 QR codes at once |
{
"mcpServers": {
"qr-agent-core": {
"command": "npx",
"args": ["-y", "qr-for-agent"],
"env": {
"API_KEY": "your-value",
"BASE_URL": "your-value",
"DATABASE_URL": "your-value",
"ADMIN_SECRET": "your-value",
"STRIPE_SECRET_KEY": "your-value",
"STRIPE_WEBHOOK_SECRET": "your-value",
"STRIPE_PRICE_ID": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| API_KEY | Credential the server authenticates with. | Yes |
| BASE_URL | Endpoint or connection string the server talks to. | Yes |
| DATABASE_URL | Endpoint or connection string the server talks to. | Yes |
| ADMIN_SECRET | Credential the server authenticates with. | Yes |
| STRIPE_SECRET_KEY | Credential the server authenticates with. | Yes |
| STRIPE_WEBHOOK_SECRET | Credential the server authenticates with. | Yes |
| STRIPE_PRICE_ID | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.