Skip to main content
Glama

Server Details

Provides UX capabilities to enhance the design output and understanding of AI systems.

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

generate_color_scheme and search_icons serve completely distinct purposes: one creates color palettes, the other finds icons. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow a clear verb_noun pattern: generate_color_scheme and search_icons. The naming convention is perfectly consistent.

Tool Count3/5

With only two tools, the server feels thin, but the tools cover a specific niche (Material Design assets). The count is borderline, as it's below the typical 3-15 range, but each tool is purposeful.

Completeness4/5

The tools cover the two primary needs for Material Design asset generation: color schemes and icons. Minor gaps exist (e.g., typography, spacing, or other design tokens), but for the apparent scope, the coverage is adequate and workable.

Available Tools

2 tools
generate_color_schemeA
Read-onlyIdempotent
Inspect

Generates a Material Design color scheme from one or more key colors. Always use this when you need to create a color scheme for an application. The input is one or more named colors in hex format, and the output is a color scheme with a map of color role names to colors in hex format.

ParametersJSON Schema
NameRequiredDescriptionDefault
primaryKeyYesRequired. The primary key color used as the main seed for the scheme. Can be a 6-character hex code (e.g., "#4285F4" or "4285F4"), or any standard CSS color name (e.g., "blue").
tertiaryKeyNoOptional. The tertiary key color used to generate the color scheme. If omitted, it will be automatically derived from the other keys. Can be a hex code or any CSS color name.
secondaryKeyNoOptional. The secondary key color used to generate the color scheme. If omitted, it will be automatically derived from the other keys. Can be a hex code or any CSS color name.
backgroundKeyNoOptional. The neutral key color used to generate the color scheme. If omitted, it will be automatically derived from the other keys. Can be a hex code or any CSS color name.
contrastLevelNoOptional. The contrast level of the color scheme. Values range from -1 (minimum contrast) to 1 (maximum contrast). 0 represents standard contrast (i.e. the design as specified).
optionalThemeNoOptional. Whether to generate a light or dark theme. If unspecified, and a background key is supplied, it will be inferred from that. If not, it will default to light theme.
optionalSchemeVariantNoOptional. If only the primary key color is supplied, this will select which variant of the color scheme to use. If only the primary key color is supplied and this is not set, it defaults to "TONAL_SPOT". If multiple key colors are supplied, this is ignored, and it will default to "BRAND".

Output Schema

ParametersJSON Schema
NameRequiredDescription
colorSchemeNoThe generated color scheme.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful context about the output structure (a map of color role names to hex colors) but does not disclose additional behaviors beyond that.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three concise sentences: what it does, when to use it, and what the input/output look like. Every sentence earns its place, and the key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With a rich input schema, annotations, and an output schema, the description appropriately covers purpose, usage context, and high-level input/output. It doesn't need to explain optional parameters or return values because the structured data already does. Minor lack of detail about derivation of optional colors is acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each parameter fully documented in the input schema. The description only says 'one or more named colors in hex format,' which is less detailed than the schema and adds no new meaning. Baseline 3 is appropriate because the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates a Material Design color scheme from key colors, with a specific verb ('Generates') and resource ('color scheme'). It is easily distinguished from sibling tools (fonts/icons) and adds the input/output shape.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Always use this when you need to create a color scheme for an application,' providing clear when-to-use guidance. There are no alternative tools in the sibling list for this purpose, so no exclusionary guidance is needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_iconsA
Read-onlyIdempotent
Inspect

Finds appropriate Material Design icons matching keywords that describe their usage, style, or shape.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsYesRequired. A list of semantic keywords or metadata tags that describe the desired icon's visual or functional properties. If possible, specify at least three tags to describe usage, style, and shape. Examples: - For a "save" icon: ["save", "diskette", "document", "storage"] - For a "home" icon: ["home", "house", "building"] If multiple tags are provided, the service returns icons that match any part of the tag list, ordered by relevance (number of matching tags). If no tags are provided, all icons are returned.
iconSetNoOptional. The icon set to search within (e.g., "Material Symbols", "Material Icons"). If omitted, the default icon set of the environment is used.

Output Schema

ParametersJSON Schema
NameRequiredDescription
iconsNoThe names of icons that match the provided tags, ordered by relevance.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is clear. The description adds no further behavioral context (e.g., ordering, pagination, or output format), but it does not contradict annotations. This meets the baseline for tools with good annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-formed sentence that immediately conveys the tool's function. It is concise with no redundant information, and the key verb and object are front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple read-only search operation, the presence of a complete input schema (100% coverage) and an output schema, the description provides sufficient context. The purpose is clear, and the schema fills in parameter details, making the tool complete for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both parameters (tags and iconSet) are thoroughly documented in the schema. The description's mention of 'usage, style, or shape' mildly aligns with the tags parameter but does not add new meaning beyond the rich schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Finds appropriate Material Design icons matching keywords that describe their usage, style, or shape.' It specifies the verb (finds), the resource (Material Design icons), and the matching mechanism (keywords), distinguishing it from sibling tools like search_fonts and generate_color_scheme.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through its clear focus on icon search, and the sibling tool names (search_fonts, describe_font) provide context for when to use this tool instead. However, it does not explicitly state 'when not to use' or name alternatives, so it stops short of a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources