Jinero
Server Details
AI-agent design tools: fonts, palettes, color naming & extraction, contrast, code, SVG, CSS.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 15 of 15 tools scored. Lowest: 3.2/5.
Each tool has a clearly distinct purpose. Color tools target different aspects (contrast, extraction, shades, naming), code tools cover conversion, detection, and minification, and font/palette tools are separate and well-defined.
All tool names follow a consistent verb_noun pattern with underscores (e.g., check_contrast, extract_colors, search_fonts), making the API predictable and easy to navigate.
15 tools is within the ideal range for a focused server. The count covers two domains (code utilities and design utilities) without being overwhelming or sparse.
The tool set covers core operations for code (conversion, detection, minification) and design (colors, fonts, palettes) comprehensively. Minor gaps exist, such as a dedicated color format conversion tool, but overall the surface is well-rounded.
Available Tools
15 toolscheck_contrastCheck Contrast ToolAInspect
Check the WCAG contrast ratio between a foreground and background color, with AA/AAA pass/fail for normal and large text.
| Name | Required | Description | Default |
|---|---|---|---|
| bg | Yes | Background color (hex, rgb(), or hsl()). | |
| fg | Yes | Foreground color (hex, rgb(), or hsl()). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions AA/AAA pass/fail, adding behavioral context, but does not disclose error handling, color validation, or other behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded with the main action, containing no waste or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool without output schema, the description covers the key output (AA/AAA pass/fail) and input formats, though it could mention return value structure or error behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with each parameter described. The description adds no additional parameter meaning beyond what the schema provides, so baseline score applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks the WCAG contrast ratio between a foreground and background color, including AA/AAA pass/fail for normal and large text. This specific verb-resource combination effectively distinguishes it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking contrast but provides no explicit guidance on when to use this tool versus alternatives, nor any conditions where it should not be used.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_codeConvert Code ToolAInspect
Convert code between formats (e.g. JSON↔YAML, CSS↔SCSS). Use list_code_converters for valid from/to ids and per-converter options.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Target format id. | |
| code | Yes | Source code to convert. | |
| from | Yes | Source format id (see list_code_converters). | |
| options | No | Per-converter options (see optionsSchema in list_code_converters). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It omits behavioral details like error handling, idempotency, or size limits. However, the operation is straightforward and non-destructive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with front-loaded purpose and example. No unnecessary words; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 4-parameter tool with no output schema, the description covers purpose and parameter sourcing adequately. Could mention the output type (converted code) but it's implied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all 4 parameters with descriptions. Description adds value by linking 'from' and 'to' to list_code_converters, and mentions per-converter options, going beyond schema information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Convert' and resource 'code', with examples (JSON↔YAML, CSS↔SCSS) that differentiate it from sibling tools like minify_code or detect_code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly directs to use list_code_converters for valid ids and options, providing actionable guidance. Lacks explicit 'when not to use' statement but siblings cover distinct functions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detect_codeDetect Code ToolBInspect
Detect the language/format of a code snippet.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Snippet to inspect. Max 200,000 chars. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so description carries full burden. It only states the general purpose without mentioning limitations, accuracy, or what is detected (e.g., programming languages only).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence with no extraneous information; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description is too sparse. It does not explain the return format (e.g., language name, confidence score) or any constraints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema description for 'code' is adequate. The tool description adds no additional parameter meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool's action ('Detect') and resource ('language/format of a code snippet'), distinguishing it from siblings like convert_code or minify_code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied: use when you need to identify code language. However, no explicit when-not-to-use or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_colorsExtract Colors ToolAInspect
Extract a dominant-color palette from an image URL. 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.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Palette mode: "balanced" (default), "vibrant", or "muted". | |
| count | No | How many colors to return (2–16, default 8). | |
| image_url | Yes | Public URL of the image to pull the palette from. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return format (hex, rgb, hsl, share, color name) but does not mention error handling for invalid URLs, permissions, or whether the tool is read-only. Annotations are empty, so description carries full burden but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the core action and output details. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward extraction tool with 3 parameters and no output schema, the description covers purpose and output adequately. However, it lacks guidance on mode behavior and error handling, which are minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description does not add new meaning to parameters beyond what the schema already provides for mode, count, and image_url.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'extract', the resource 'dominant-color palette from an image URL', and specifies the output components (hex, rgb, hsl, share, color name). Distinguishes from siblings like get_palette and name_color.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use for extracting colors from images but does not explicitly state when to use this tool versus alternatives like search_palettes or get_palette. No exclusions or context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_color_shadesGet Color Shades ToolAInspect
Generate tints and shades for a base color (lighter/darker steps) with hex values.
| Name | Required | Description | Default |
|---|---|---|---|
| hex | Yes | Base color in hex, rgb(), or hsl(). | |
| step | No | Step percentage (default 10). | |
| limit | No | Cap on tints/shades (default fills to ~100%). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It states it generates tints/shades with hex values but omits output format (array of hex strings? objects?), error handling for invalid colors, or whether the function is idempotent/no side effects. The schema covers parameter constraints (step enum, limit range), but behavioral traits like rate limits, auth, or destructive potential are unaddressed. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence of 14 words that efficiently captures the core functionality. It is front-loaded with the action 'Generate' and specifies the resource. Every word is necessary; there is no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 3 parameters, no output schema, and empty annotations, the description is missing key context about return values (e.g., list of hex strings, possibly with metadata). While the schema parameter descriptions are detailed, the overall tool behavior (e.g., default step of 10, how limit interacts with step) is not explicitly stated. The description is minimally adequate but would benefit from specifying output format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides complete descriptions for all three parameters (100% coverage), so the description's addition of 'tints and shades' does not enhance parameter meaning beyond the schema. The description does not clarify parameter relationships or provide example values beyond what's in the schema, so baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: generate tints and shades (lighter/darker steps) from a base color, providing hex values. This distinguishes it from sibling tools like get_palette (which creates multi-color palettes from images) and check_contrast (contrast checking). The verb 'Generate' and resource 'tints and shades' are specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a monochromatic color variation is needed but does not explicitly state when to use this tool versus alternatives like get_palette, search_palettes, or convert_code. No when-not instructions or prerequisite conditions are provided, leaving the agent to infer based on tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_fontGet Font ToolAInspect
Get full metadata for one font family by slug: styles, weights, axes, license, subsets and download/CSS URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Family slug, e.g. 'inter', 'playfair-display'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With empty annotations, description carries full burden. It lists returned metadata categories but does not disclose side effects, error conditions, or network requirements. Adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with key info, zero wasted words. Highly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description lists major metadata categories. For a single-param retrieval tool, this is nearly complete; could add example response format or structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (one parameter with description). Description adds no extra meaning beyond schema; baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Get' and resource 'full metadata for one font family by slug', listing specific fields returned. Distinguishes from siblings like search_fonts or get_font_download_url.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage when you have a known font slug and need detailed metadata, but no explicit when-to-use or when-not-to-use guidance compared to siblings. Lacks exclusions or alternative contexts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_font_download_urlGet Font Download Url ToolAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Family slug, e.g. 'inter'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It explains what the tool returns (ZIP URL with all styles and CSS) and what it doesn't do (no download). This is transparent enough for safe invocation, though it doesn't discuss URL expiration or permissions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two precise sentences, no fluff. The negative clarification is front-loaded, making the description efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 parameter, no output schema), the description fully covers what the tool does and what it returns. No gaps are evident.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (1 parameter fully described), so baseline is 3. The description adds value by explaining that the slug identifies a font family and that the URL contains all styles plus a fonts.css, giving context beyond the schema's minimal 'Family slug'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Return the direct ZIP download URL for a font family', which is a specific verb+resource. It implicitly distinguishes itself from sibling tools like get_font, get_font_files, and get_fonts_css by focusing solely on the download URL.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly clarifies that it does not download the file, telling the agent to 'hand the URL to the user or fetch it separately'. This provides clear usage guidance, though it could be more explicit about when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_font_filesGet Font Files ToolAInspect
List every font file (weight/italic/format + direct woff2/ttf URL) for a family — handy for building custom @font-face rules.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Family slug, e.g. 'inter'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description bears full responsibility for behavioral disclosure. It accurately describes the tool as listing files with URLs, implying read-only behavior. However, it does not explicitly state side effects, caching, or safety guarantees, which is acceptable for a simple list tool but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently conveys the core functionality and use case without any unnecessary words. Every part earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only one parameter and no output schema, the description adequately covers input and hints at output structure (weight/italic/format + URL). It is sufficient for an agent to understand the tool, though a more explicit output structure would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (one parameter, slug, with description). The description does not add additional semantics beyond the schema, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: listing all font files (weight, italic, format, direct URLs) for a family. It uses a specific verb ('List') and resource ('font files'), and includes a use case ('building custom @font-face rules'), effectively distinguishing it from siblings like get_font (single font info) or get_fonts_css (CSS rules).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for building custom @font-face rules but does not explicitly state when to use it over alternatives like get_font_download_url or get_fonts_css. It offers a clear context but lacks explicit exclusions or comparisons to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_fonts_cssGet Fonts Css ToolAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| family | Yes | Family spec, e.g. "inter:wght@400,700" or "inter:wght@300..900". | |
| display | No | font-display value (default swap). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It states the tool returns CSS text, which is transparent for a read-only generation operation, but lacks details on error handling or what happens with invalid specs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—two sentences with no wasted words, front-loading the core purpose and example.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description minimally explains the return value ('Returns CSS text'). It is sufficient for a simple tool, but could benefit from clarifying output format or length.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% description coverage, so baseline is 3. The description adds no extra meaning beyond the schema's parameter descriptions; it only repeats examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates @font-face CSS for a family spec, providing examples and indicating the output type. It distinguishes from sibling tools like get_font (returns font data) and get_font_download_url (returns URL).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for generating CSS but does not explicitly state when to use this tool versus alternatives like get_font or get_font_files. No guidance on when not to use it is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_paletteGet Palette ToolAInspect
Get one color palette by id: its colors (hex), name/derived title, mood, harmony, temperature and tags.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Palette id. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so description must disclose behavior. It lists returned fields but does not state that the operation is read-only, has no side effects, or any auth/rate-limit considerations. The 'get' verb implies safety, but not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no redundancy, every word adds value. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and empty annotations, the description provides sufficient detail about the return value (colors, name, mood, harmony, temperature, tags). The input is simple (one id), so the tool is fully described.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema defines 'id' as 'Palette id.' The description adds contextual meaning by explaining that using this ID yields colors, name, mood, etc., which enriches understanding beyond the minimal schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the action (Get), the resource (one color palette by id), and the data returned (colors, name, mood, harmony, temperature, tags). Distinguishes from sibling tools like search_palettes, which are for finding palettes by criteria.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives (e.g., search_palettes). The description implies it is for known IDs, but lacks explicit when-to-use or when-not-to-use instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_code_convertersList Code Converters ToolAInspect
List available code converters with their from/to ids and per-converter option schemas.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the return information but does not explicitly state that the tool is read-only or has no side effects, nor does it mention any limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the purpose and key details without any wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of parameters and output schema, the description adequately explains what the tool returns. However, it could be more complete by hinting at how the returned data connects to other tools (e.g., convert_code).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so baseline is 4. The description does not need to add parameter information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists available code converters and specifies what information is returned (from/to ids and option schemas), distinguishing it from siblings like convert_code or detect_code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied but not explicitly stated; it's clear this tool is meant for discovering converters before using convert_code, but no exclusions or when-not-to-use information is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
minify_codeMinify Code ToolAInspect
Minify or beautify JS, CSS, HTML, SVG, JSON or XML. Set type=auto to sniff the language.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Source code to transform. | |
| mode | No | Default minify. | |
| type | Yes | Source language, or 'auto' to sniff. | |
| keep_license | No | Preserve /*! ... */ license comments when minifying. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so description carries full burden. It states the action (minify/beautify) but does not disclose side effects, error behavior, or whether the transformation is lossy or reversible. Lacks depth for a mutation-like tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences that convey core purpose efficiently. Front-loaded with main functionality, no superfluous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 4 parameters and no output schema, description covers basic functionality but lacks details on return format, error handling, or performance. Adequate but incomplete for a transformation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. Description adds minimal extra value beyond schema, e.g., clarifying type=auto sniffs language. Not enough to raise score significantly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it minifies or beautifies code in multiple languages (JS, CSS, HTML, etc.) with a specific verb and resource. It distinguishes from sibling tools like convert_code and optimize_svg by focusing on minification/beautification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides a usage hint (type=auto to sniff) but does not explicitly state when to use this tool over alternatives or any exclusions. Implied usage is present but not comprehensive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
name_colorName Color ToolAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| hex | Yes | A hex color, or several comma-separated (e.g. "#3b82f6,#000,#ff7f50"). Up to 100 at once. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description bears full burden. It discloses return fields (name, reference hex, exact-match flag, perceptual distance) but does not mention any potential side effects or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-structured sentence that front-loads the purpose and efficiently details input/output without wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one parameter and no output schema, the description adequately explains input format and output fields, leaving no obvious gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% but description adds valuable context: input format (comma-separated, up to 100) and example, enhancing beyond the schema's brief description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states it gets the closest human-readable name for colors with specific input and output details, distinguishing it from siblings like check_contrast or extract_colors.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use (to get color names), but does not explicitly mention when not to use or suggest alternatives, though siblings cover related but distinct tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_fontsSearch Fonts ToolAInspect
Search the free font catalog by name, category, style tags, language coverage, variable/monospace flags and style count. Returns a paginated list of families.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Fuzzy name match. | |
| page | No | Page number. | |
| sort | No | Sort direction. | |
| langs | No | Comma-separated language codes, e.g. 'latin,cyrillic' — ALL must be supported. | |
| order | No | Sort field, default 'likes'. | |
| style | No | 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. | |
| category | No | Comma-separated categories, e.g. 'serif,sans'. | |
| per_page | No | Results per page (default 24). | |
| variable | No | Only variable fonts. | |
| monospace | No | Only monospace fonts. | |
| styles_max | No | Maximum number of styles. | |
| styles_min | No | Minimum number of styles. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions pagination (returns a paginated list), which is a behavioral trait. However, it does not disclose other aspects like read-only nature, authorization requirements, or performance, which would be helpful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that front-loads the purpose and key capabilities. Every word earns its place; no redundancy or unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Considering the tool has 12 optional parameters and no output schema, the description provides a good overview of search dimensions and pagination. It could mention default sort and result structure, but the schema compensates. Overall, it is fairly complete for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Since schema description coverage is 100%, the baseline is 3. The description reiterates some parameter categories (name, category, style tags, etc.) but adds little new meaning beyond what the schema already provides. No further details on filter combination logic are given.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: searching the free font catalog by multiple criteria and returning a paginated list of families. It uses specific verbs ('Search') and resource ('font catalog') and distinguishes from sibling tools like get_font or get_font_files.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description outlines what parameters can be used to filter, but does not explicitly state when to use this tool versus alternatives like get_font (for a single font) or when not to use it. The context is clear but lacks exclusionary guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_palettesSearch Palettes ToolBInspect
Search the color-palette catalog by name, tone, temperature, mood, harmony, exact color count and tags. Returns a paginated list.
| Name | Required | Description | Default |
|---|---|---|---|
| mood | No | e.g. pastel, muted, earthy, vibrant, monochrome. | |
| name | No | Fuzzy name match. | |
| page | No | Page number. | |
| tags | No | Tag slugs — ALL must match (AND). | |
| tone | No | Overall tone. | |
| order | No | Sort order (default newest). | |
| harmony | No | e.g. analogous, complementary, triadic, monochromatic, split-complementary, tetradic. | |
| per_page | No | Results per page (default 24). | |
| color_count | No | Exact number of colors. | |
| temperature | No | Color temperature. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It only mentions 'returns a paginated list' but does not explain pagination details, rate limits, authentication needs, or what happens with no results. The disclosure is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two efficient sentences: first lists search dimensions, second states the result format. It front-loads the action ('Search') and includes no unnecessary words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 10 parameters, no output schema, and no annotations, the description is too brief. It lacks details on pagination defaults, how multiple criteria combine, error handling, or default behavior. More context is needed for an agent to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description lists some parameter categories (name, tone, etc.) but adds no additional meaning beyond the schema descriptions. It does not clarify how parameters interact (e.g., AND logic for tags) or provide formatting examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches the color-palette catalog with specific criteria (name, tone, temperature, mood, harmony, color count, tags) and returns a paginated list. This distinguishes it from sibling tools like get_palette (retrieves a single palette) or search_fonts (searches fonts).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives, such as whether to search by specific fields or combine criteria. The description only states what it does, lacking any usage context, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!