Toolkit MCP Server
by cyanheads
Verified
generateQRCode
Generate a QR code from input data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data to encode in QR code | |
errorCorrectionLevel | No | Error correction level | M |
type | No | Output 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"
}