Design
Convert sRGB 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/srgb-to-adobe-rgb-converter' \
-H 'Content-Type: application/json' \
-d '{"srgb":"Enter sRGB values, one per line:\nsrgb(255,0,128)\nsrgba(255,0,128,0.5)\nrgb(255,0,128)\nrgba(255,0,128,0.5)\n255,0,128\n255,0,128,0.5\nR:255 G:0 B:128\nR:255 G:0 B:128 A:0.5\n#FF0080\n#FF008080\nff0080\nff008080","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/srgb-to-adobe-rgb-converter| Name | Type | Required | Description |
|---|---|---|---|
| srgb | 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-srgb-to-adobe-rgb-converter": {
"name": "srgb-to-adobe-rgb-converter",
"description": "Convert sRGB color values to Adobe RGB format for professional design",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=srgb-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": "srgb-to-adobe-rgb-converter",
"arguments": {
"srgb": "Enter sRGB values, one per line:\nsrgb(255,0,128)\nsrgba(255,0,128,0.5)\nrgb(255,0,128)\nrgba(255,0,128,0.5)\n255,0,128\n255,0,128,0.5\nR:255 G:0 B:128\nR:255 G:0 B:128 A:0.5\n#FF0080\n#FF008080\nff0080\nff008080",
"format": "simple"
}
}
}Questions or issues? Contact [email protected]