Design
Generate 3D stereogram (Magic Eye) images from text - creates hidden 3D text that reveals itself when viewed correctly
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-stereogram' \
-H 'Content-Type: application/json' \
-d '{"text":"3D","fontSize":80,"patternType":"random","separation":150,"width":800,"height":400}'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-stereogram| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | The text will appear as 3D when viewing the stereogram correctly. Supports multiple lines. |
| fontSize | number | No | Larger text = more pronounced 3D effect. |
| patternType | select | No | — |
| separation | number | No | Controls the strength of the 3D effect. Higher = stronger effect. |
| width | number | No |
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-stereogram": {
"name": "image-stereogram",
"description": "Generate 3D stereogram (Magic Eye) images from text - creates hidden 3D text that reveals itself when viewed correctly",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-stereogram",
"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-stereogram",
"arguments": {
"text": "3D",
"fontSize": 80,
"patternType": "random",
"separation": 150,
"width": 800,
"height": 400
}
}
}Questions or issues? Contact [email protected]
| — |
| height | 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)"
}