Skip to main content
Glama
devstroop

Icons MCP Server

by devstroop

recommend_icons

Find the right icons for any UI use case, from navigation to ecommerce, and get curated suggestions with usage examples.

Instructions

Get AI-friendly icon recommendations for common UI use cases. Supports: navigation, sidebar, user, authentication, ecommerce, payment, files, media, status, settings, dashboard, development, brands, weather, calendar, search, communication, social, actions, crud. Returns curated icon suggestions with usage examples.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of recommendations
styleNoPreferred icon styleany
useCaseYesThe UI use case (e.g., "navigation", "ecommerce", "user", "status", "settings", "brands")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it says only that results are 'curated icon suggestions with usage examples.' It does not state determinism, what happens for an unsupported use case, result ordering, or whether limit truncates silently.

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

Conciseness4/5

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

Purpose is front-loaded in the first sentence and the return value follows. The 20-item use-case list is long but functional rather than filler, since it defines the accepted input domain.

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 no output schema, the description does mention what comes back (curated suggestions plus usage examples), which is the key gap to cover. A recommendation-only read tool with a fully documented 3-param schema needs little more.

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 limit, style, and useCase are already documented in the schema. The description adds the valid use-case vocabulary beyond the schema's short example list, which is useful but marginal; baseline 3 applies when the schema does the heavy lifting.

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

Purpose4/5

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

States a specific verb+resource ('Get AI-friendly icon recommendations') and scopes it to UI use cases, which separates it from raw lookups like get_icon or search_icons. However, it never names or contrasts those siblings explicitly, so the agent must infer the boundary between 'recommend' and 'search'.

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

Usage Guidelines3/5

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

The enumeration of supported use cases implies when the tool is applicable, giving an implicit usage signal. It offers no explicit when-to-use vs when-not guidance and does not point to search_icons/get_icon as alternatives for other needs.

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