Design
Apply professional cinematic color grading to your images. Choose from popular movie styles like Hollywood Blockbuster, Indie Film, Vintage Film, and more. Perfect for giving photos a movie-like appearance.
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-cinematic-color' \
-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-cinematic-color' \
-F 'imageFile=/path/to/file.ext' \
-F 'preset=hollywood' \
-F 'intensity=50' \
-F 'contrast=0' \
-F 'saturation=0' \
-F 'temperature=0' \
-F 'fade=0' \
-F 'vignette=0' \
-F 'filmGrain=0' \
-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-cinematic-color| Name | Type | Required | Description |
|---|---|---|---|
| imageFile | fileupload required | Yes | — |
| preset | select | Yes | — |
| intensity | number | No | — |
| contrast | number | No | — |
| saturation | number | No | — |
| temperature | number | No | — |
| fade | number | No | — |
| vignette | number | No | — |
| filmGrain | number | No | — |
| outputFormat | select | Yes | — |
| 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)"
}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-cinematic-color": {
"name": "image-cinematic-color",
"description": "Apply professional cinematic color grading to your images. Choose from popular movie styles like Hollywood Blockbuster, Indie Film, Vintage Film, and more. Perfect for giving photos a movie-like appearance.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-cinematic-color",
"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-cinematic-color",
"arguments": {
"imageFile": "https://example.com/file.ext",
"preset": "hollywood",
"intensity": 50,
"contrast": 0,
"saturation": 0,
"temperature": 0,
"fade": 0,
"vignette": 0,
"filmGrain": 0,
"outputFormat": "png",
"quality": 90
}
}
}Questions or issues? Contact [email protected]