Command Palette

Search for a command to run...

UnylyUnyly
Browse all

QRzap Server

FreeNot checked

Enables AI agents to generate QR codes for URLs, WiFi, contacts, and more with structured parameters.

GitHubEmbed

About

Enables AI agents to generate QR codes for URLs, WiFi, contacts, and more with structured parameters.

README

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
<img src="https://qrzap.fun/api/generate?type=url&url=https://example.com" width="200" />

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

from github.com/pranav-bhatkar/qrzap

Installing QRzap Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/pranav-bhatkar/qrzap

FAQ

Is QRzap Server MCP free?

Yes, QRzap Server MCP is free — one-click install via Unyly at no cost.

Does QRzap Server need an API key?

No, QRzap Server runs without API keys or environment variables.

Is QRzap Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install QRzap Server in Claude Desktop, Claude Code or Cursor?

Open QRzap Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare QRzap Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs