generate_qr_code
Create QR codes for shortened URLs with customizable size, format, and margin. Integrates with YOURLS-MCP to simplify sharing and tracking.
Instructions
Generate a QR code for a shortened URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Image format (png, svg, etc.) | |
margin | No | Margin size | |
shorturl | Yes | The short URL to generate a QR code for | |
size | No | Size of the QR code in pixels |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Image format (png, svg, etc.)",
"type": "string"
},
"margin": {
"description": "Margin size",
"type": "number"
},
"shorturl": {
"description": "The short URL to generate a QR code for",
"type": "string"
},
"size": {
"description": "Size of the QR code in pixels",
"type": "number"
}
},
"required": [
"shorturl"
],
"type": "object"
}