Design
Pick colors from images by specifying coordinates. Get color values in HEX, RGB, HSL, HSV, and CMYK formats.
Call this tool from your code in three languages.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/image-color-picker' \
-H 'Content-Type: application/json' \
-d '{"filename":"imageFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-color-picker' \
-F 'imageFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'x=0' \
-F 'y=0' \
-F 'sampleRadius=0' \
-F 'outputFormat=all'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-color-picker| Name | Type | Required | Description |
|---|---|---|---|
| imageFile | fileupload required | Yes | Upload any image file to pick colors from |
| x | number | Yes | X coordinate in pixels, counting from the left edge (0 = left edge) |
| y | number | Yes | Y coordinate in pixels, counting from the top edge (0 = top edge) |
| sampleRadius | number | No | Radius of area to sample (0 = single pixel, higher values average colors in the area) |
| outputFormat | select | No | Choose which color format(s) to include in the output |
JSON result
{
"key": {...},
"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-color-picker": {
"name": "image-color-picker",
"description": "Pick colors from images by specifying coordinates. Get color values in HEX, RGB, HSL, HSV, and CMYK formats.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-color-picker",
"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-color-picker",
"arguments": {
"imageFile": "https://example.com/file.ext",
"x": 0,
"y": 0,
"sampleRadius": 0,
"outputFormat": "all"
}
}
}Questions or issues? Contact [email protected]