Skip to main content
Glama
Osmansiddiquer

Iconify MCP Server

get_all_icon_sets

Browse every Iconify icon collection and retrieve metadata for each set, including icon counts, authors, licenses, and sample icons.

Instructions

Browse all available icon collections from Iconify (200+ icon sets with 200,000+ icons). Returns a list of all icon sets with their metadata including name, total icons, author, license, and sample icons.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it does disclose the operation's nature (read-only browse, no arguments) plus the concrete payload fields returned: name, total icons, author, license, and sample icons. It stops short of describing response format or ordering, which keeps it from a 5.

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?

Two sentences, zero waste, front-loaded with the scope and scale before the return details. Every clause earns its place.

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?

No output schema exists, so the description must describe the return value, and it lists the metadata fields an agent can expect. It is adequate for a simple zero-parameter listing tool, though it omits format/ordering details that would make the payload fully predictable.

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

Parameters4/5

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

Zero parameters, so there is nothing to disambiguate; the baseline for a parameterless tool is 4. The description correctly implies no filtering arguments exist by framing the call as 'all available' collections.

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 and resource ('Browse all available icon collections from Iconify') and quantifies scope (200+ sets, 200,000+ icons). The word 'all' implicitly contrasts with the singular sibling get_icon_set, but no sibling is named explicitly, so the differentiation is left to inference.

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?

Usage is implied by 'Browse all available' — an agent can infer this is the enumeration/discovery entry point before drilling into get_icon_set. However, there is no explicit when-to-use statement and no mention of alternatives such as search_icons for targeted lookup.

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