Design
Convert HEX color values to Adobe RGB format for professional design
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/hex-to-adobe-rgb-converter' \
-H 'Content-Type: application/json' \
-d '{"hex":"Enter HEX values, one per line:\n#ff0000\n#00ff00\n#ffffff\n#ff000080\n#00ff0080\nf00\n0f0\n00f\nf08\n0f8","format":"simple"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/hex-to-adobe-rgb-converter| Name | Type | Required | Description |
|---|---|---|---|
| hex | textarea | Yes | — |
| format | select | Yes | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-hex-to-adobe-rgb-converter": {
"name": "hex-to-adobe-rgb-converter",
"description": "Convert HEX color values to Adobe RGB format for professional design",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=hex-to-adobe-rgb-converter",
"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": "hex-to-adobe-rgb-converter",
"arguments": {
"hex": "Enter HEX values, one per line:\n#ff0000\n#00ff00\n#ffffff\n#ff000080\n#00ff0080\nf00\n0f0\n00f\nf08\n0f8",
"format": "simple"
}
}
}Questions or issues? Contact [email protected]