ez-qr-generator
https://server.smithery.ai/evgenii-zinner/ez-qr-generator/mcp# EZ QR Code Generator MCP Server An official Model Context Protocol (MCP) server for [ez-qr-generator.com](https://ez-qr-generator.com), enabling your AI assistants (like Claude, Cursor, and Cline) to dynamically generate and customize high-quality QR codes on the fly. This server connects your AI environment directly to our QR generation API using Server-Sent Events (SSE). ## Tools The server exposes the following tools to your AI agent: ### 1. `generate_qr_code` Generates a custom QR code in PNG or SVG format. * **Arguments:** * `url` (string, optional): The URL or text to encode. * `format` (string, optional): `'png'`, `'svg'`, or `'json'` (default: `'png'`). * `dotStyle` (string, optional): `'square'`, `'circle'`, `'hex'`, or `'diamond'` (default: `'square'`). * `primaryColor` (string, optional): Hex color code for the foreground (e.g., `#00f0ff`). * `eccLevel` (string, optional): `'L'`, `'M'`, `'Q'`, or `'H'` (default: `'H'`). * `logoUrl` (string, optional): Image URL or base64 data URL to embed in the center. * `activeTab` (string, optional): Payload type, e.g., `'url'` or `'dbl'` (default: `'url'`). * `dblCode` (string, optional): Dragon Ball Legends code (required if activeTab is `'dbl'`). --- ## Installation ### Web Client Configuration (For SSE) Add the following configuration to your `claude_desktop_config.json` file to connect to the hosted MCP server: ```json { "mcpServers": { "ez-qr-generator": { "url": "https://ez-qr-generator.com/mcp", "transport": "sse" } } }
How to connect
https://server.smithery.ai/evgenii-zinner/ez-qr-generator/mcp
curl -X POST https://server.smithery.ai/evgenii-zinner/ez-qr-generator/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'