Jinero MCP Server
OfficialClick 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., "@Jinero MCP ServerSearch for a handwriting font that supports Cyrillic"
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.
Jinero MCP Server
online.jinero/jinero — a hosted, remote Model Context Protocol server that gives AI agents (Claude, Cursor, Cline, Zed, Gemini CLI…) the design tools of jinero.online: 22 read-only tools for fonts (search, CSS, files, recognition from an image), color math (WCAG contrast, shades, naming, palette extraction), curated palettes, code minify/convert/detect, SVG optimization and SCSS helpers.
Endpoint:
https://jinero.online/mcp(Streamable HTTP)Auth: none — anonymous & free, rate-limited at 60 req/min per IP
Registry:
online.jinero/jineroin the official MCP registryManifest:
/.well-known/mcp/server.jsonHuman docs: jinero.online/dev/mcp — full reference with example responses
Connect
Claude Code (CLI):
claude mcp add --transport http jinero https://jinero.online/mcpClaude Desktop / Cursor / Cline (config):
{
"mcpServers": {
"jinero": { "type": "http", "url": "https://jinero.online/mcp" }
}
}Older stdio-only clients can bridge with npx mcp-remote https://jinero.online/mcp.
Related MCP server: mcp-services
Trust & safety
Every tool declares MCP annotations, verifiable in tools/list:
all 22 tools are
readOnlyHint: trueandidempotentHint: true;submitted code/SVG is parsed and transformed as text — never executed, never stored;
uploaded images (font recognition, color extraction) are processed in memory and deleted immediately;
only three tools fetch a user-supplied URL (
recognize_font,extract_colors,svg_to_datauri) — markedopenWorldHint: true, with SSRF-guarded, size-capped fetches.
Try it without a client
# List all tools
curl -s -X POST https://jinero.online/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'More runnable examples in examples/.
Tool reference
Generated from the live tools/list of the current server version.
Fonts
search_fonts
Search the free font catalog by name, category, style tags, language coverage, variable/monospace flags and style count. Returns a paginated list of families.
read-only · idempotent
Parameter | Type | Description |
| string | Fuzzy name match. |
| string | Comma-separated categories, e.g. 'serif,sans'. |
| string | Comma-separated language codes, e.g. 'latin,cyrillic' — ALL must be supported. |
| string | Comma-separated style tags, e.g. 'handwriting,condensed' — ALL must match. One of: handwriting, script, display, slab, rounded, condensed, expanded, stencil, pixel, blackletter, outline, retro. |
| boolean | Only variable fonts. |
| boolean | Only monospace fonts. |
| integer | Minimum number of styles. |
| integer | Maximum number of styles. |
| string: likes | downloads | views | name | created_at | Sort field, default 'likes'. |
| string: asc | desc | Sort direction. |
| integer | Results per page (default 24). |
| integer | Page number. |
recognize_font
Identify which font is used in an image. Powered by our OWN CNN embedding model, trained on the jinero font catalog — it matches fonts by visual shape/style, so it needs NO OCR and NO text (works for Latin and Cyrillic). Send a tight crop of one line of text as either image_url (public URL) or image_base64 (base64/data-URI, e.g. a local screenshot). The image is processed in memory and deleted immediately — never stored. Returns the most visually similar font families with scores. Fast (~200 ms).
read-only · idempotent · fetches external URLs
Parameter | Type | Description |
| string | Public URL of an image — a tight crop of one line of text. Provide either this or image_base64. Recognition is by visual shape (no OCR/text needed); Latin & Cyrillic supported. |
| string | Base64-encoded image (raw base64 or a data:image/...;base64 URI), max 8 MB decoded — use this to send a local file/screenshot without hosting it. Provide either this or image_url. |
| integer | Number of font matches to return (3–20, default 8). |
get_font
Get full metadata for one font family by slug: styles, weights, axes, license, subsets and download/CSS URLs.
read-only · idempotent
Parameter | Type | Description |
| string | Family slug, e.g. 'inter', 'playfair-display'. |
get_font_files
List every font file (weight/italic/format + direct woff2/ttf URL) for a family — handy for building custom @font-face rules.
read-only · idempotent
Parameter | Type | Description |
| string | Family slug, e.g. 'inter'. |
get_fonts_css
Generate ready-to-use @font-face CSS for a family spec (Google-Fonts-compatible), e.g. "inter:wght@400,700" or a variable range "inter:wght@300..900". Returns CSS text.
read-only · idempotent
Parameter | Type | Description |
| string | Family spec, e.g. "inter:wght@400,700" or "inter:wght@300..900". |
| string: swap | auto | block | fallback | optional | font-display value (default swap). |
get_font_download_url
Return the direct ZIP download URL for a font family (all styles + a ready fonts.css). Does NOT download — hand the URL to the user or fetch it separately.
read-only · idempotent
Parameter | Type | Description |
| string | Family slug, e.g. 'inter'. |
Colors
check_contrast
Check the WCAG contrast ratio between a foreground and background color, with AA/AAA pass/fail for normal and large text.
read-only · idempotent
Parameter | Type | Description |
| string | Foreground color (hex, rgb(), or hsl()). |
| string | Background color (hex, rgb(), or hsl()). |
get_color_shades
Generate tints and shades for a base color (lighter/darker steps) with hex values.
read-only · idempotent
Parameter | Type | Description |
| string | Base color in hex, rgb(), or hsl(). |
| string: 5 | 10 | 20 | 25 | Step percentage (default 10). |
| integer | Cap on tints/shades (default fills to ~100%). |
name_color
Get the closest human-readable name for one or more colors. Pass a single hex or several comma-separated (e.g. "#3b82f6,#000,#ff7f50"); returns each input with its nearest color name, the reference hex, an exact-match flag and the perceptual distance.
read-only · idempotent
Parameter | Type | Description |
| string | A hex color, or several comma-separated (e.g. "#3b82f6,#000,#ff7f50"). Up to 100 at once. |
extract_colors
Extract a dominant-color palette from an image. Send either a public image_url or image_base64 (base64/data-URI, e.g. a local screenshot). The image is processed in memory and never stored. Each color comes back with its hex, rgb, hsl, share of the image, and the closest human color name — a named palette in one call.
read-only · idempotent · fetches external URLs
Parameter | Type | Description |
| string | Public URL of the image to pull the palette from. Provide either this or image_base64. |
| string | Base64-encoded image (raw base64 or a data:image/...;base64 URI), max 10 MB decoded — use this to send a local file/screenshot without hosting it. Provide either this or image_url. |
| integer | How many colors to return (2–16, default 8). |
| string | Palette mode: "balanced" (default), "vibrant", or "muted". |
Palettes
search_palettes
Search the color-palette catalog by name, tone, temperature, mood, harmony, exact color count and tags. Returns a paginated list.
read-only · idempotent
Parameter | Type | Description |
| string | Fuzzy name match. |
| string: light | dark | mixed | Overall tone. |
| string: warm | cool | neutral | Color temperature. |
| string | e.g. pastel, muted, earthy, vibrant, monochrome. |
| string | e.g. analogous, complementary, triadic, monochromatic, split-complementary, tetradic. |
| integer | Exact number of colors. |
| array | Tag slugs — ALL must match (AND). |
| string: newest | popular | name | Sort order (default newest). |
| integer | Results per page (default 24). |
| integer | Page number. |
get_palette
Get one color palette by id: its colors (hex), name/derived title, mood, harmony, temperature and tags.
read-only · idempotent
Parameter | Type | Description |
| integer | Palette id. |
Code
minify_code
Minify or beautify JS, CSS, HTML, SVG, JSON or XML text. Set type=auto to sniff the language. The code is only parsed and re-printed — never executed and never stored.
read-only · idempotent
Parameter | Type | Description |
| string | Source code to transform. |
| string: js | css | html | svg | json | xml | auto | Source language, or 'auto' to sniff. |
| string: minify | beautify | Default minify. |
| boolean | Preserve /*! ... */ license comments when minifying. |
detect_code
Detect the language/format of a code snippet. Static analysis only — the snippet is never executed and never stored.
read-only · idempotent
Parameter | Type | Description |
| string | Snippet to inspect. Max 200,000 chars. |
convert_code
Convert code between text formats (e.g. JSON↔YAML, CSS↔SCSS). Pure text transformation: the source is parsed and re-serialized, never executed and never stored. Use list_code_converters for valid from/to ids and per-converter options.
read-only · idempotent
Parameter | Type | Description |
| string | Source code to convert. |
| string | Source format id (see list_code_converters). |
| string | Target format id. |
| object | Per-converter options (see optionsSchema in list_code_converters). |
list_code_converters
List available code converters with their from/to ids and per-converter option schemas.
read-only · idempotent
No parameters.
SVG
optimize_svg
Optimize/clean SVG markup (SVGO). Pure markup transformation — nothing is executed or stored. Returns minified SVG plus before/after sizes.
read-only · idempotent
Parameter | Type | Description |
| string | SVG source. Max 500,000 chars. |
| string: safe | balanced | aggressive | Optimization preset (default balanced). |
svg_to_datauri
Encode an SVG (or fetched image) as a CSS-ready data: URI. Provide either raw svg or a url.
read-only · idempotent · fetches external URLs
Parameter | Type | Description |
| string | Raw SVG markup. Mutually exclusive with url. |
| string | Public image URL the server will fetch. |
| string: utf8 | base64 | Defaults: utf8 for SVG, base64 for raster. |
| string: single | double | Quote style for the data URI (default double). |
list_svg_presets
List the available SVG optimization presets and what each one does.
read-only · idempotent
No parameters.
Dev
list_scss_mixins
List the SCSS mixin catalog (id, title, short description), optionally filtered by group or search.
read-only · idempotent
Parameter | Type | Description |
| string | e.g. Bootstrap, Project, Pattern, Placeholder. |
| string | Fuzzy substring across id/title/short/desc. |
| string: summary | full | Detail level (default summary). |
get_scss_mixin
Get one SCSS mixin by id: full source, parameters and usage example.
read-only · idempotent
Parameter | Type | Description |
| string | Mixin id (kebab-case), e.g. 'centerer', 'media-breakpoint-up'. |
generate_clamp
Calculate a fluid CSS clamp() expression for responsive sizing between two viewport widths. Pure calculation — returns a CSS snippet, writes and stores nothing.
read-only · idempotent
Parameter | Type | Description |
| number | Minimum size in px. |
| number | Maximum size in px. |
| number | Viewport width at min_fs (default 320). |
| number | Viewport width at max_fs (default 1440). |
| string: px | rem | both | Output unit (default rem). |
| number | Root font-size in px for rem conversion (default 16). |
About
Built and operated by jinero.online — free design tools for fonts, icons, colors and code. The MCP server is a thin wrapper over the same public REST API: one contract, identical behavior.
This repository holds the public documentation and examples for the server. Issues and feature requests for the tools are welcome here.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceWeb scraping MCP server for Al agents. 6 tools: extract clean text/markdown from any URL, structured scraping with CSS selectors, full-page screenshots via Playwright, link extraction with regex filtering, metadata extraction (OG tags, Twitter cards), and Google search. Free tier: 50 requests/IP/day.6MIT
- Alicense-qualityDmaintenanceMulti-tool MCP server for AI agents with 29 tools across web scraping, SEO analysis, screenshot and PDF generation, domain intelligence, content extraction, multi-chain EVM blockchain queries, and security toolkit. Free tier available with no auth required.81MIT
- AlicenseAqualityBmaintenanceDesign system MCP server. 20 tools: extract design tokens from any URL, pull from Figma or Penpot, generate React + shadcn/ui components from specs, run WCAG audits, sync tokens bidirectionally.5060739MIT

@first-ch/tools-mcpofficial
AlicenseAqualityBmaintenanceMCP server exposing First CH Tools' free web-tool logic for WCAG contrast, JP character counting, WebP conversion, JSON-LD, and llms.txt generation to AI agents.692MIT
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/jinero-online/jinero-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server