Design
Mix multiple colors together with different blending modes and ratios
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/color-mixer' \
-H 'Content-Type: application/json' \
-d '{"color1":"#FF6B6B","ratio1":1,"color2":"#4ECDC4","ratio2":1,"color3":"","ratio3":1,"color4":"","ratio4":1,"color5":"","ratio5":1,"mode":"weighted"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/color-mixer| Name | Type | Required | Description |
|---|---|---|---|
| color1 | color | Yes | — |
| ratio1 | number | No | — |
| color2 | color | Yes | — |
| ratio2 | number | No | — |
| color3 | color | No | — |
| ratio3 | number |
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-color-mixer": {
"name": "color-mixer",
"description": "Mix multiple colors together with different blending modes and ratios",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=color-mixer",
"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": "color-mixer",
"arguments": {
"color1": "#FF6B6B",
"ratio1": 1,
"color2": "#4ECDC4",
"ratio2": 1,
"color3": "",
"ratio3": 1,
"color4": "",
"ratio4": 1,
"color5": "",
"ratio5": 1,
"mode": "weighted"
}
}
}Questions or issues? Contact [email protected]
| No |
| — |
| color4 | color | No | — |
| ratio4 | number | No | — |
| color5 | color | No | — |
| ratio5 | number | No | — |
| mode | select | Yes | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}