An MCP (Model Context Protocol) server that provides FluentUI icon search capabilities to AI assistants like Claude.
Note: This MCP server uses the FluentUI Icons Search API by Keenmate. It's a free service - please don't abuse it.
- search_icons - Search for icons by name, with optional style and size filters
- get_icon_svg - Fetch the raw SVG content of a specific icon
- api-docs - Resource providing API documentation
Add to your claude_desktop_config.json:
{
"mcpServers": {
"fluentui-icons": {
"command": "npx",
"args": ["@keenmate/fluentui-icons-mcp"]
}
}
}Add to your MCP settings (via /mcp command or settings file):
{
"mcpServers": {
"fluentui-icons": {
"command": "npx",
"args": ["@keenmate/fluentui-icons-mcp"]
}
}
}Then restart Claude and you're ready to go!
FLUENTUI_ICONS_API- API base URL (default:https://fluentui-icons.keenmate.dev)
Once connected, you can ask Claude:
- "Find me a calendar icon"
- "Search for arrow icons in filled style"
- "Get the SVG for a 24px pen icon"
- "Find icons related to user or person"
npm run dev # Watch mode
npm run build # Build for production
npm start # Run the serverMIT