Design
Generate QR codes from URLs or text with customizable size and colors
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/qr-code-generator' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter text, URL, or any content to encode in QR code","size":200,"errorCorrectionLevel":"M","margin":4,"color":"#000000","backgroundColor":"#FFFFFF","format":"png"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/qr-code-generator| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| size | number | No | — |
| errorCorrectionLevel | select | No | — |
| margin | number | No | — |
| color | color | No | — |
| backgroundColor |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-qr-code-generator": {
"name": "qr-code-generator",
"description": "Generate QR codes from URLs or text with customizable size and colors",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=qr-code-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "qr-code-generator",
"arguments": {
"text": "Enter text, URL, or any content to encode in QR code",
"size": 200,
"errorCorrectionLevel": "M",
"margin": 4,
"color": "#000000",
"backgroundColor": "#FFFFFF",
"format": "png"
}
}
}Questions or issues? Contact [email protected]
| color |
| No |
| — |
| format | select | No | — |
Image result
{
"result": "/public/processing/randomid.jpg",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"width": 800,
"height": 600,
"format": "jpeg"
}
}