Remix Icon MCP
Overview
Remix Icon MCP is a powerful icon search and recommendation service built on Cloudflare Workers, providing intelligent icon discovery through advanced semantic matching algorithms.
To use Remix Icon MCP, you can access its API endpoints to find icons based on natural language descriptions, get icon categories, or search for icons within specific categories.
- Smart Icon Search using natural language descriptions - Multi-language Support for English and Chinese - Category Management for browsing icons - Advanced Matching algorithms including Jaccard Similarity, N-gram Matching, and more - Fast preliminary search using an inverted index - Caching for improved performance
- Finding icons for web and mobile applications based on user descriptions.
- Browsing icons by categories for design projects.
- Integrating icon search functionality into other applications.
Add to your AI client
Use these steps to connect Remix Icon MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-remix-icon-fradser": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-remix-icon-fradser": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-remix-icon-fradser": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-remix-icon-fradser": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-remix-icon-fradser": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-remix-icon-fradser": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-remix-icon-fradser"
]
}
}
}FAQ
Can I use Remix Icon MCP for free?
Yes! Remix Icon MCP is free to use.
What languages does Remix Icon MCP support?
It supports both English and Chinese for icon searches.
How does the icon search work?
The search uses multiple algorithms to match user descriptions with relevant icons.