Design
Add beautiful glow effects to images with customizable color, intensity, size, and style variations
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-add-glow' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-add-glow' \
-F 'imageFile=/path/to/file.ext' \
-F 'glowStyle=soft' \
-F 'glowColor=#00FFFF' \
-F 'glowIntensity=0.8' \
-F 'glowSize=20' \
-F 'glowBlur=15' \
-F 'glowSpread=1.2' \
-F 'innerGlow=false' \
-F 'backgroundColor=transparent' \
-F 'outputFormat=png' \
-F 'quality=90'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/image-add-glow| Name | Type | Required | Description |
|---|---|---|---|
| imageFile | fileupload required | Yes | Upload any image file to add glow effect to |
| glowStyle | select | Yes | Choose the style of glow effect |
| glowColor | color | No | Color of the glow effect |
| glowIntensity | number | No | Intensity of the glow (0.0 to 1.0) |
| glowSize | number | No | Size of the glow effect in pixels |
| glowBlur | number | No | Blur radius of the glow (higher = softer) |
| glowSpread | number | No | How much the glow spreads outward |
| innerGlow | checkbox | No | Add a glow effect inside the image edges |
| backgroundColor | color | No | Background color (leave empty for transparent) |
| outputFormat | select | No | Choose output format or keep original |
| quality | number | No | Output quality for lossy formats (WebP, JPEG) |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-image-add-glow": {
"name": "image-add-glow",
"description": "Add beautiful glow effects to images with customizable color, intensity, size, and style variations",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-add-glow",
"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": "image-add-glow",
"arguments": {
"imageFile": "https://example.com/file.ext",
"glowStyle": "soft",
"glowColor": "#00FFFF",
"glowIntensity": 0.8,
"glowSize": 20,
"glowBlur": 15,
"glowSpread": 1.2,
"innerGlow": false,
"backgroundColor": "transparent",
"outputFormat": "png",
"quality": 90
}
}
}Questions or issues? Contact [email protected]