rnv-color-mcp
OfficialThe rnv-color-mcp server provides a complete color workflow — mixing, converting, harmonizing, comparing, and managing palettes — plus text transformation and accessibility checks.
Mix Colors (
mix_colors): Blend up to 12 colors using multiple models:lab(perceptual, default),rgb,hsv,paint(Kubelka-Munk pigment physics),ryb(artist's color wheel), orcmy(subtractive/printer-ink). Supports optional integer weights to bias the blend.Convert Color (
convert_color): Transform colors betweenhex,rgb,hsv,hsl, andlabformats.Generate Harmony (
generate_harmony): Create color harmonies from a base color — complementary, analogous, triadic, split-complementary, tetradic/square, monochromatic, or compound.Color Difference (
color_difference): Calculate perceptual difference (Delta-E) between two colors using CIEDE2000 (default) or CIE76, with a plain-language interpretation.Contrast Check (
contrast_check): Compute WCAG contrast ratio (1.0–21.0) between foreground and background colors, with AA/AAA pass/fail results for normal text, large text, and UI components.Transform Text (
transform_text): Apply 11 deterministic case transformations: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, CONSTANT_CASE, kebab-case, dot.case, and iNVERTED cASE.Palette Management: Save (
save_palette), list (list_palettes), and retrieve (get_palette) named color palettes with optional notes, persisted across restarts.
Universal color input accepts hex values (#d2bc93), CSS names (red), RNV brand names, or saved-palette references. Unknown color names are refused, never guessed.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rnv-color-mcpmix navy blue and teal"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
title: RNV Color MCP emoji: 🎨 colorFrom: gray colorTo: yellow sdk: docker app_port: 7860 pinned: false short_description: Color workflow MCP server
RNV Color MCP
A remote MCP server for a complete color workflow: mix, convert, harmonize, and remember palettes, called in plain language by Claude (or any MCP client), and by anything else that speaks MCP.
Related MCP server: MCP Color Server
Why this exists
The color logic already lived in my desktop suite: a mixer, a palette manager, a picker. Instead of rebuilding it for every new project, I lifted the engine out once and exposed it as a single server. A Claude conversation calls it today; a fashion design app will call the same backend tomorrow. Build the engine once, let both consume it.
Underneath, it's a small thesis about working with LLMs: a model is great at deciding what you want and terrible at exact arithmetic. So the model picks the tool and the intent, and the tool owns the precise values. The server resolves or it refuses; it never guesses a color.
What it does
Tool | What it does |
| Blend up to 12 colors. Modes: |
| Convert between hex, rgb, hsv, hsl, lab. |
| complementary, analogous, triadic, split-complementary, tetradic/square, monochromatic, compound. |
| Perceptual difference (Delta-E, CIEDE2000 or CIE76) between two colors. |
| WCAG contrast ratio plus AA/AAA pass/fail for accessible text. |
| 11 exact case transforms (UPPERCASE, camelCase, snake_case, …). |
| Name a palette, recall it later. Persists across restarts. |
Every color input accepts a hex (#d2bc93), a CSS name (red), an RNV brand name
(brand gold, near-black), or a saved-palette reference (Spring line, or Spring line:2
for its second swatch). Brand names win over CSS names on collision; css:gold forces the
universal one.
Connect in 30 seconds
This is a hosted server, so there's nothing to install. In Claude: Settings → Connectors → Add custom connector, then paste:
https://rnvizion-rnv-color-mcp.hf.space/mcpLeave auth blank, add it, then toggle it on in a chat with the + menu.
Try it
Once connected, just talk:
"Save a palette named Spring line: near-black and brand gold." "Pull my Spring line palette and give me three complementary accents for outerwear." "Mix paint-red and paint-blue like real pigment."
The first call saves; the second composes get_palette → generate_harmony; the third runs the
Kubelka-Munk paint model, so the blend darkens the way mixed pigment actually does, not the way
averaged light does.
Run it yourself
pip install -r requirements.txt
python server.py # Streamable HTTP on $PORT (default 7860)
python tests/server_test.py # exercises all 9 tools in-processSet HF_TOKEN to write palettes through to a private Hugging Face Dataset for durable storage.
Notes
One brand source of truth. Brand colors live in
engine/brand.py; the resolver imports them, so a brand value is defined in exactly one place. SeeBRAND_COLORS.md.Engine is dependency-free. The color math, harmony, and text logic are pure standard library, lifted Qt-free from the desktop apps. Only the server layer needs
fastmcp.Honest by design. An unknown color name is refused, not guessed.
Stack
Python · FastMCP (Streamable HTTP) · Hugging Face Spaces
(Docker) · huggingface_hub for durable palette storage.
Built by Christian "RNVizion" Smith.
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RNVizion/rnv-color-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server