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
| Name | Type | Required | Description |
|---|---|---|---|
hex | string | yes | One or more hex colors, comma-separated. With or without #. e.g. “ff0000” or “#ff0000,#00ff00”. |
list | string | no | Color-name list to use. Default “default”. Other options: wikipedia, ntc, x11, html, japaneseTraditional, leCorbusier, bestOf, etc. |
Example call
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":{}}}'
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.