AgentStack
MCP verified MIT Self-run

Qrzap

mcp-pranav-bhatkar-qrzap · by pranav-bhatkar

Free QR code generator with web UI, REST API, and MCP server. Supports URL, WiFi, phone, email, SMS, vCard.

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add mcp-pranav-bhatkar-qrzap

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Qrzap? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

QRzap

Free, open-source QR code generator with a web UI, REST API, and MCP server.

Supports URL, WiFi, phone, email, SMS, vCard, and plain text.

qrzap.fun | Docs | API Reference | npm

Features

  • Web UI - Generate and download QR codes instantly. Customize colors, size, error correction.
  • REST API - GET /api/generate?type=url&url=... returns SVG. No API key, CORS enabled.
  • MCP Server - npx qrzap adds QR generation to any AI agent. Works with Claude, Cursor, VS Code.
  • 7 QR types - URL, WiFi, phone, email, SMS, vCard, text. Structured params (pass ssid and password, not raw WiFi strings).
  • Download formats - PNG, SVG, JPEG, WebP from the web UI.
  • Privacy - Everything runs client-side. No data stored. No tracking.

MCP Server

One command to add QR code generation to any AI client:

# Claude Code
claude mcp add qrzap -- npx qrzap@latest

# Claude Desktop / Cursor / VS Code (add to config JSON)
{
  "mcpServers": {
    "qrzap": {
      "command": "npx",
      "args": ["qrzap@latest"]
    }
  }
}

Then ask: "Generate a QR code for my WiFi network MyWiFi with password secret123"

REST API

# URL QR code
curl "https://qrzap.fun/api/generate?type=url&url=https://example.com" -o qr.svg

# WiFi QR code
curl -X POST https://qrzap.fun/api/generate \
  -H "Content-Type: application/json" \
  -d '{"type":"wifi","ssid":"MyNetwork","password":"secret123"}' \
  -o wifi.svg

# Embed in HTML

Run locally

git clone https://github.com/pranav-bhatkar/qrzap.git
cd qrzap
npm install
npm run dev

Tech stack

Support

If you find QRzap useful, consider supporting the project:

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.