Color Pizza
live UtilityColor Pizza MCP — names hex colors using human-friendly color-name lists.
Tools
name_colors 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,
No parameters required.
Try it
search_color_names Search named colors whose name contains a substring (e.g. "blue", "rose", "teal"). Returns matching color names with their hex codes. Optionally restrict to a specific naming list (see list_palettes).
No parameters required.
Try it
list_palettes List all available color-name lists (palettes) with their titles, descriptions, color counts, and licenses. Use this to discover valid values for the "list" argument of name_colors and search_color_na
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/color-pizza/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/color-pizza/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"name_colors","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("name_colors", {}); // Or ask in plain English:
const answer = await px.ask("color pizza mcp — names hex colors using human-friendly color-name lists");