home / mcp / hugeicons mcp server
MCP server that provides tools and resources for integrating Hugeicons into various platforms. It implements a Model Context Protocol (MCP) server that helps AI assistants provide accurate guidance for using Hugeicons.
Configuration
View docs{
"mcpServers": {
"hugeicons-mcp-server": {
"command": "npx",
"args": [
"-y",
"@hugeicons/mcp-server"
]
}
}
}You deploy Hugeicons MCP Server to enable AI assistants to discover icons, fetch glyphs, and provide platform-specific integration guidance for Hugeicons. This server exposes tools to search and list icons, retrieve glyph data, and access platform docs and usage instructions, all through a consistent MCP interface.
You interact with the Hugeicons MCP Server through an MCP client to discover icons, fetch glyphs, and obtain platform-specific guidance. Use the available tools to list all icons, search icons by name or tags, retrieve platform usage instructions, and obtain glyphs across styles. You can also access platform installation guides and font-based HTML integration resources to implement Hugeicons in your target application.
Prerequisites: ensure you have Node.js installed on your machine. You will also need npm (comes with Node.js) or an environment that supports running MCP servers.
Option A: Install Hugeicons MCP Server for Claude Desktop automatically via Smithery.
npx -y @smithery/cli install @hugeicons/mcp-server --client claudeTo use with Claude Desktop, add the following server config to Claude’s MCP settings.
{
"mcpServers": {
"hugeicons": {
"command": "npx",
"args": [
"-y",
"@hugeicons/mcp-server"
]
}
}
}Option B: Quick start by running the server directly with npx.
npx @hugeicons/mcp-serverDevelopment workflow (auto-rebuild) if you are actively developing the server: run the watch task.
npm run watchIf you need debugging tools, start the MCP Inspector to access debugging utilities from your browser.
npm run inspectorConfigure your client or hosting environment to connect to the MCP server using the stdio command shown above or any remote setup you use. The server exposes a curated set of tools and resources to support icon discovery, glyph retrieval, and platform-specific guidance.
Retrieve a list of all available Hugeicons icons.
Search for icons by name or tags to quickly find what you need.
Obtain platform-specific usage instructions for integrating Hugeicons.
Fetch all glyphs (unicode characters) for a specific icon across all available styles.
Get the glyph for a specific icon with a particular style.