color_convert

Pack: color · Endpoint: https://gateway.pipeworx.io/color/mcp

Convert a color (HEX, rgb(), hsl(), or a CSS name) to all formats: HEX, RGB and HSL. Keyless, offline.

Parameters

NameTypeRequiredDescription
colorstringyese.g. “#3498db”, “rgb(52,152,219)”, “hsl(204,70%,53%)”, or “tomato”.

Example call

Arguments

{
  "color": "#3498db"
}

curl

curl -X POST https://gateway.pipeworx.io/color/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"color_convert","arguments":{"color":"#3498db"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('color_convert', {
  "color": "#3498db"
});

More examples

{
  "color": "rgb(52,152,219)"
}
{
  "color": "tomato"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "color": {
      "url": "https://gateway.pipeworx.io/color/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026