Let your AI assistant make QR codes.
Ask Claude, ChatGPT or your coding agent for “a QR code for our menu” and get a tiny, printable code whose link you can change later — with scan analytics. Qex speaks MCP and has a plain REST API.
What it can do
- Create dynamic QR codes and show them inline (PNG), with SVG for print
- Change where a code points, rename, recolour, pause and resume
- Read scan analytics: per day, country, city, device, time of day
- Render static QR images for Wi-Fi, vCards or plain text
Connect
MCP server URL
https://qexqr.com/mcpStreamable HTTP. Sign-in is OAuth: your assistant opens a Qex page where you click Allow. No API key needed.
Claude (claude.ai, Desktop, mobile)
Settings → Connectors → Add custom connector → paste the URL above → Connect.
ChatGPT
Add a custom connector / app (developer mode) in Settings, paste the URL above and choose OAuth.
Claude Code
claude mcp add --transport http qex https://qexqr.com/mcp
Cursor
Add to Cursor or add to
~/.cursor/mcp.json:{
"mcpServers": {
"qex": {
"url": "https://qexqr.com/mcp"
}
}
}VS Code (Copilot agent mode)
Add to VS Code or
.vscode/mcp.json:{
"servers": {
"qex": {
"type": "http",
"url": "https://qexqr.com/mcp"
}
}
}Anything else (Windsurf, Zed, scripts, agents)
Clients without OAuth can send an API key instead:
Authorization: Bearer qex_sk_…. Or use the REST API:curl https://qexqr.com/v1/codes \
-H "Authorization: Bearer $QEX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"destination":"https://example.com/menu","name":"Table menu"}'For developers and agents
- /llms.txt — short overview for language models
- /llms-full.txt — full API and MCP reference as Markdown
- /openapi.json — OpenAPI 3.1 for the REST API (works with GPT Actions)
https://qexqr.com/mcp— MCP server (protocol 2026-07-28, older clients supported)- /v1/render?data=… — static QR image for any text, no account