Install
openclaw skills install qrcode-skillQR code generation and decoding skill. Use when: generating QR codes from text/URLs, decoding/reading/parsing QR codes from images, creating scannable QR cod...
openclaw skills install qrcode-skillGenerate and decode QR codes via the remote MCP service at https://qrcode.api4claw.com/mcp.
| Operation | MCP Tool | Description |
|---|---|---|
| Generate QR Code | generate_qr_code | Convert text or URL into a QR code PNG image (base64-encoded) |
| Decode QR Code | decode_qr_code | Extract text content from a QR code image |
This skill requires the following MCP server to be configured:
{
"mcpServers": {
"qrcode": {
"type": "http",
"url": "https://qrcode.api4claw.com/mcp"
}
}
}
generate_qr_code MCP tool:
text (required): The content to encodesize (optional): Image size in pixels.png filedecode_qr_code MCP tool:
image_base64 (required): Base64-encoded PNG image dataSee MCP API Reference for detailed tool schemas and examples.
Generate:
"Generate a QR code for https://github.com" "Create a 256px QR code containing my WiFi config: WIFI:T:WPA;S:MyNetwork;P:password123;;"
Decode:
"Decode the QR code in ./assets/ticket.png" "What does this QR code say?" (with image attached)