Color Similarity Skill
The tool
Color Similarity Calculator provides detailed color comparison using both RGB and HSL color spaces, calculating similarity percentages, color distances, and providing categorical similarity ratings.
Once your client is connected to the VerveKit MCP server, this appears in its tool list as ColorSimilaritySkill. It is read-only and open-world: it fetches, it never mutates anything on your side, so most clients will call it without asking you to confirm.
{
"name": "ColorSimilaritySkill",
"arguments": {
"color1": "FF5733",
"color2": "FF6B47"
}
}What that looks like in a conversation
You don't name the tool — the model picks it. Asking about FF5733 in the terms this source covers is enough for it to reach for ColorSimilaritySkill on its own.
Connecting
One server URL covers every skill in the catalog, including this one. Authorization is OAuth — the client opens a browser once and there is no key to paste into a config file.
{
"mcpServers": {
"vervekit": {
"url": "https://api.vervekit.com/v1/mcp"
}
}
}https://api.vervekit.com/v1/mcpPer-client setup — Claude Desktop, Cursor, VS Code, ChatGPT — is on the MCP setup page.
Arguments
These are the properties on the tool's inputSchema, so a well-behaved client validates them before the call is made.
| Argument | Type | Example | Description |
|---|---|---|---|
color1Required | string | FF5733 | First hex color value (with or without # prefix) |
color2Required | string | FF6B47 | Second hex color value (with or without # prefix) |
What the model gets back
The result carries a structuredContent object matching the tool's declared outputSchema, so a client can read fields without parsing prose. status is "ok" on success and error is null; a null field means the value wasn't available for that input, not that the call failed.
{
"status": "ok",
"error": null,
"data": {
"color1": {
"hex": "#FF5733",
"rgb": {
"r": 255,
"g": 87,
"b": 51
},
"hsl": {
"h": 10.6,
"s": 100,
"l": 60
}
},
"color2": {
"hex": "#FF6B47",
"rgb": {
"r": 255,
"g": 107,
"b": 71
},
"hsl": {
"h": 11.7,
"s": 100,
"l": 63.9
}
},
"rgb_distance": 28.28,
"rgb_similarity": 93.6,
"hsl_similarity": 97.71,
"overall_similarity": 95.65,
"delta_e": 28.28,
"hue_difference": 1.15,
"saturation_difference": 0,
"lightness_difference": 3.92,
"similarity_category": "nearly identical",
"are_identical": false
}
}Fields
| Field | Type | Example | Description |
|---|---|---|---|
color1 | object | {…} | The first colour, in hex, RGB and HSL |
color1.hex | string | #FF5733 | First color in hexadecimal format representation |
color1.rgb | object | {…} | First colour as red, green and blue channels |
color1.rgb.r | number | 255 | Red channel value for first color |
color1.rgb.g | number | 87 | Green channel value for first color |
color1.rgb.b | number | 51 | Blue channel value for first color |
color1.hsl | object | {…} | First colour as hue, saturation and lightness |
color1.hsl.h | number | 10.6 | Hue value for first color in degrees |
color1.hsl.s | number | 100 | Saturation percentage for first color |
color1.hsl.l | number | 60 | Lightness percentage for first color |
color2 | object | {…} | The second colour, in hex, RGB and HSL |
color2.hex | string | #FF6B47 | Second color in hexadecimal format representation |
color2.rgb | object | {…} | Second colour as red, green and blue channels |
color2.rgb.r | number | 255 | Red channel value for second color |
color2.rgb.g | number | 107 | Green channel value for second color |
color2.rgb.b | number | 71 | Blue channel value for second color |
color2.hsl | object | {…} | Second colour as hue, saturation and lightness |
color2.hsl.h | number | 11.7 | Hue value for second color in degrees |
color2.hsl.s | number | 100 | Saturation percentage for second color |
color2.hsl.l | number | 63.9 | Lightness percentage for second color |
rgb_distancePremium | number | 28.28 | Euclidean distance between colors in RGB space |
rgb_similarityPremium | number | 93.6 | Percentage similarity based on RGB color space |
hsl_similarityPremium | number | 97.71 | Percentage similarity based on HSL color space |
overall_similarity | number | 95.65 | Combined similarity percentage from all algorithms |
delta_ePremium | number | 28.28 | Delta E color difference metric for perceptual similarity |
hue_differencePremium | number | 1.15 | Hue difference between colors in degrees |
saturation_differencePremium | number | 0 | Saturation percentage difference between colors |
lightness_differencePremium | number | 3.92 | Lightness percentage difference between colors |
similarity_category | string | nearly identical | Human readable category describing similarity level |
are_identical | boolean | false | Boolean indicating if colors are exactly identical |
Failure modes
Errors come back as tool errors with a sentence the model can act on, not a bare status code.
| Status | What it means |
|---|---|
400 / 422 | The arguments didn't validate. The message names the offending one. |
401 | The OAuth session is invalid or expired — reconnect the server. |
403 | Out of credits. Not a bad key — the month's allowance is spent. |
404 | This skill isn't part of VerveKit. Check the catalog. |
429 | Brief rate limit. Retrying after a moment succeeds. |
Other ways to use Color Similarity Skill
Set up Color Similarity Skill on VerveKit, or reach the same source a different way. Your VerveKit account and credits work on all of them — one key, one balance.
Frequently asked questions
Do I have to tell the agent to use ColorSimilaritySkill?
No. The tool's name and description are in the model's context once the server is connected, so it selects the tool when the question calls for it. Naming it explicitly works too and is useful when you want to force the call.
Does connecting the server expose every tool at once?
Yes — one connection lists the whole VerveKit catalog. Clients with a tool budget can usually filter the list; the credit cost is per call, so an unused tool costs nothing.
What does a call cost?
1 credit each time the tool actually runs. A model that reasons about the tool without calling it costs nothing.
Is there a REST version of this?
Yes — the same source is available as a plain HTTPS endpoint on APIVerve, linked above. Same data, same credits, same account.