Utilities
Generate QR codes for WiFi networks to easily share credentials with guests
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/wifi-qr-generator' \
-H 'Content-Type: application/json' \
-d '{"ssid":"Enter WiFi network name","encryption":"WPA","password":"Enter WiFi password (min 8 characters)","hidden":false,"size":300,"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/wifi-qr-generator| Name | Type | Required | Description |
|---|---|---|---|
| ssid | text | Yes | — |
| encryption | select | No | — |
| password | text | No | — |
| hidden | checkbox | No | — |
| size | number | No | — |
| margin |
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-wifi-qr-generator": {
"name": "wifi-qr-generator",
"description": "Generate QR codes for WiFi networks to easily share credentials with guests",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=wifi-qr-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": "wifi-qr-generator",
"arguments": {
"ssid": "Enter WiFi network name",
"encryption": "WPA",
"password": "Enter WiFi password (min 8 characters)",
"hidden": false,
"size": 300,
"margin": 4,
"color": "#000000",
"backgroundColor": "#FFFFFF",
"format": "png"
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| color | color | No | — |
| backgroundColor | 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"
}
}