name_colors

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

Find the nearest human-friendly color name for one or more hex colors. Pass hex codes (with or without leading #), comma-separated for several at once. Returns the closest named color for each input, with its canonical hex, RGB, and perceptual distance. Optionally pick a naming list (e.g. “wikipedia”, “ntc”, “x11”, “html”, “japaneseTraditional”, “leCorbusier”, “bestOf”); defaults to “default”. Use list_palettes to see all available lists.

Parameters

NameTypeRequiredDescription
hexstringyesOne or more hex colors, comma-separated. With or without #. e.g. “ff0000” or “#ff0000,#00ff00”.
liststringnoColor-name list to use. Default “default”. Other options: wikipedia, ntc, x11, html, japaneseTraditional, leCorbusier, bestOf, etc.

Example call

Arguments

{
  "hex": "ff0000"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('name_colors', {
  "hex": "ff0000"
});

More examples

{
  "hex": "#ff0000,#00ff00,#0000ff",
  "list": "wikipedia"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026