generate-qrcode-terminal
Generate QR codes from text or URLs and display them directly in your terminal. This tool converts input data into terminal-formatted QR codes for quick scanning and sharing.
Instructions
Generate a QR code from text or URL and display it in terminal format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | Terminal display options | |
text | Yes | The text or URL to encode in the QR code |
Input Schema (JSON Schema)
{
"properties": {
"options": {
"additionalProperties": false,
"description": "Terminal display options",
"properties": {
"small": {
"default": false,
"description": "Use small format for terminal display",
"type": "boolean"
}
},
"type": "object"
},
"text": {
"description": "The text or URL to encode in the QR code",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}