iconify
Server Details
Iconify MCP — wraps the Iconify public API (free, no auth)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-iconify
- GitHub Stars
- 0
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.8/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: get_icons retrieves SVG data for specific icons, list_collections enumerates available collections, and search_icons finds icons by keyword. There is no overlap in functionality, making tool selection unambiguous.
All tools follow a consistent verb_noun pattern with snake_case naming (get_icons, list_collections, search_icons). The verbs accurately describe the actions, and there are no deviations in style or convention.
With 3 tools, the server is well-scoped for icon retrieval and discovery, though it feels slightly minimal. Each tool serves a distinct purpose, but additional utilities like filtering or metadata retrieval could enhance completeness without being necessary.
The tools cover core workflows: discovering collections, searching icons, and retrieving SVG data. Minor gaps exist, such as no direct icon metadata access or batch operations, but agents can work around these using the provided tools effectively.
Available Tools
3 toolsget_iconsAInspect
Retrieve SVG body data for one or more icons in a specific collection. Returns SVG body, width, and height for each icon.
| Name | Required | Description | Default |
|---|---|---|---|
| icons | Yes | Comma-separated icon names within the collection (e.g., "home,arrow-left,user") | |
| prefix | Yes | Collection prefix (e.g., "mdi", "fa", "heroicons", "lucide") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves data and returns specific fields (SVG body, width, height), which implies a read-only operation, but it does not disclose other behavioral traits such as error handling, rate limits, authentication needs, or whether it supports pagination for multiple icons. The description is minimal and misses key operational details.
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, well-structured sentence that efficiently conveys the tool's purpose, scope, and return values without any redundant information. It is front-loaded with the core action and resource, making it easy to understand quickly, and every part of the sentence adds value.
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 moderate complexity (2 required parameters, no output schema, and no annotations), the description is somewhat complete but has gaps. It covers what the tool does and returns, but lacks details on behavioral aspects like errors or limits. Without annotations or an output schema, the description should provide more context to fully guide usage, but it does the minimum viable job.
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 has 100% description coverage, with clear documentation for both parameters (prefix and icons), including examples. The description does not add any additional meaning beyond what the schema provides, such as explaining parameter interactions or constraints. However, since schema coverage is high, the baseline score of 3 is appropriate, as the schema adequately handles parameter semantics.
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 specific action ('Retrieve'), resource ('SVG body data for one or more icons'), and scope ('in a specific collection'), distinguishing it from sibling tools like list_collections (which lists collections) and search_icons (which searches icons). It explicitly mentions what is returned ('SVG body, width, and height for each icon'), making the purpose 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 by specifying 'in a specific collection' and the return format, but it does not explicitly state when to use this tool versus alternatives like search_icons. It provides some context (e.g., retrieving data for icons in a collection) but lacks clear guidance on exclusions or direct comparisons to sibling tools, leaving usage somewhat inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_collectionsAInspect
List all available icon collections in Iconify. Returns collection prefix, name, total icon count, author, license, and category.
| 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 provided, the description carries full burden. It discloses the return format details (prefix, name, total icon count, author, license, category) which is valuable behavioral information. However, it doesn't mention potential limitations like pagination, rate limits, authentication requirements, or error conditions that would be important for a read operation.
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, well-structured sentence that efficiently communicates both the action and the return format. Every element serves a purpose with zero waste - it states what the tool does and what information it provides without unnecessary verbiage.
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 read-only tool with no parameters and no output schema, the description provides adequate coverage of the purpose and return format. However, without annotations or output schema, it could benefit from more behavioral context (like whether this returns all collections at once or if there are limitations). The description is complete enough for basic understanding but leaves some operational questions unanswered.
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 tool has zero parameters (schema coverage 100%), so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, focusing instead on the return values and purpose. This is the correct approach for a parameterless tool.
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 specific action ('List all available icon collections'), identifies the resource ('icon collections in Iconify'), and distinguishes from sibling tools (get_icons and search_icons focus on individual icons rather than collections). It provides a comprehensive verb+resource+scope statement.
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 context by specifying what information is returned (prefix, name, count, etc.), but doesn't explicitly state when to use this tool versus the sibling tools. No explicit alternatives or exclusions are mentioned, though the different resource focus (collections vs icons) provides some implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_iconsAInspect
Search for icons by keyword across all Iconify collections. Returns icon names in "prefix:name" format (e.g., "mdi:home").
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (1-999, default 32) | |
| query | Yes | Search keyword (e.g., "home", "arrow", "user") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses the return format ('prefix:name' format) which is valuable behavioral context, but does not mention rate limits, authentication needs, pagination behavior, or error handling. The description adds some value but leaves significant behavioral aspects unspecified.
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 with zero waste: first sentence states purpose and scope, second sentence specifies return format with a concrete example. Perfectly front-loaded and appropriately sized for this tool's complexity.
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 annotations and no output schema, the description provides adequate purpose and return format but lacks details about error conditions, rate limits, authentication requirements, and result structure beyond naming format. For a search tool with 2 parameters, this is minimally complete but has clear 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 the schema already documents both parameters thoroughly. The description adds no additional parameter semantics beyond what the schema provides, such as search algorithm details or result ordering. Baseline 3 is appropriate when schema does the heavy lifting.
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 specific action ('Search for icons by keyword') and resource ('across all Iconify collections'), and distinguishes from sibling tools by focusing on keyword-based search rather than retrieval (get_icons) or collection listing (list_collections).
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 implicitly suggests usage for keyword-based icon searches, but does not explicitly state when to use this tool versus alternatives like get_icons or list_collections. It provides clear context about searching across collections but lacks explicit exclusions or named alternatives.
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!