Toolkit MCP Server

by cyanheads
Verified

generateQRCode

Generate a QR code from input data

Input Schema

NameRequiredDescriptionDefault
dataYesData to encode in QR code
errorCorrectionLevelNoError correction levelM
typeNoOutput type (terminal, svg, or base64)terminal

Input Schema (JSON Schema)

{ "properties": { "data": { "description": "Data to encode in QR code", "type": "string" }, "errorCorrectionLevel": { "default": "M", "description": "Error correction level", "enum": [ "L", "M", "Q", "H" ], "type": "string" }, "type": { "default": "terminal", "description": "Output type (terminal, svg, or base64)", "enum": [ "terminal", "svg", "base64" ], "type": "string" } }, "required": [ "data" ], "type": "object" }