← craftery.dev

INDIVIDUAL MCP TOOL

check_contrast

Compute the exact WCAG 2.

craftery.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://craftery.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for check_contrast and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

craftery.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.craftery]
url = "https://craftery.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "craftery": {
      "type": "http",
      "url": "https://craftery.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: craftery
Remote MCP URL: https://craftery.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "craftery": {
      "url": "https://craftery.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "craftery": {
      "type": "http",
      "url": "https://craftery.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "craftery",
  "transport": "streamable-http",
  "url": "https://craftery.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • convert_color — Convert a color into exact, platform-correct code for 12 formats: HEX, HEX8, rgba(), hsla(), closest CSS named color, closest Tailwind class, SwiftUI Color, UIColor, Jetpack Compose, Android XML, Flutter, and React Native.
  • swiftui_color — Generate every SwiftUI Color initializer for a color: Color(red:green:blue:), opacity variant, Color(.
  • generate_uuid — Generate cryptographically random UUIDs: v4 (random), v7 (RFC 9562 time-ordered, sortable — batches stay strictly ordered), or NIL.
  • hash_text — Compute real MD5, SHA-1, SHA-256, SHA-384, and SHA-512 digests of a UTF-8 string, or HMAC variants when a key is given (HMAC-MD5 unsupported).
  • convert_timestamp — Convert between Unix epoch timestamps and human dates with exact math: accepts epoch seconds / milliseconds / microseconds (auto-detected by magnitude), ISO 8601 / RFC 2822 strings, or "now".