Design
Generate beautiful fractal patterns including Mandelbrot set, Julia set, and Burning Ship with customizable parameters
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-fractal-generator' \
-H 'Content-Type: application/json' \
-d '{"fractalType":"mandelbrot","width":800,"height":600,"maxIterations":100,"zoom":1,"centerX":-0.5,"centerY":0,"juliaC":"-0.7+0.27015i","colorScheme":"fire","quality":95}'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-fractal-generator| Name | Type | Required | Description |
|---|---|---|---|
| fractalType | select | Yes | — |
| width | number | No | — |
| height | number | No | — |
| maxIterations | number | No | Higher values = more detail but slower |
| zoom | number | No | — |
| centerX |
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-fractal-generator": {
"name": "image-fractal-generator",
"description": "Generate beautiful fractal patterns including Mandelbrot set, Julia set, and Burning Ship with customizable parameters",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-fractal-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": "image-fractal-generator",
"arguments": {
"fractalType": "mandelbrot",
"width": 800,
"height": 600,
"maxIterations": 100,
"zoom": 1,
"centerX": -0.5,
"centerY": 0,
"juliaC": "-0.7+0.27015i",
"colorScheme": "fire",
"quality": 95
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| centerY | number | No | — |
| juliaC | text | No | Complex number for Julia set (format: a+bi) |
| colorScheme | select | No | — |
| quality | number | No | — |
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)"
}