hugeicons-mcp
# This repository has moved
All official Hugeicons packages are now maintained together in one repository:
## https://github.com/hugeicons/hugeicons
This project now lives at [`tools/mcp-server`](https://github.com/hugeicons/hugeicons/tree/main/tools/mcp-server).
Install the `@hugeicons/mcp-server` package from npm.
- Documentation: https://hugeicons.com/docs
- Browse icons: https://hugeicons.com/icons
This repository is archived and read-only.
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no overlap. get_icon_glyph_by_style retrieves a single glyph for a specific style, get_icon_glyphs gets all glyphs for an icon across styles, get_platform_usage provides usage instructions, list_icons lists all icons, and search_icons searches by criteria. An agent can easily differentiate them.
All tools follow a consistent verb_noun pattern with snake_case naming (e.g., get_icon_glyph_by_style, list_icons, search_icons). The verbs (get, list, search) are appropriately matched to the actions, and there are no deviations in style.
With 5 tools, this server is well-scoped for its purpose of accessing Hugeicons. It provides a balanced set covering listing, searching, retrieving glyphs, and usage instructions, without being too sparse or bloated.
The tool surface is nearly complete for the domain of icon access, covering listing, searching, and retrieving glyphs and usage. A minor gap is the lack of tools for managing icons (e.g., create, update, delete), but this may be intentional if the server is read-only, and core workflows are well-covered.