Font Icon Search

Developer REST API MCP

Search a catalog of about 300 icons from Font Awesome, Material Icons, Lucide, and Heroicons by name, keyword, or category and return matching icon names with their CSS class and unicode code point. Optional filters by library and category; an empty query lists the catalog.

This page documents the HTTP endpoint POST /api/tools/font-icon-search/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/font-icon-search/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/font-icon-search/execute \
  -H "Content-Type: application/json" \
  -d '{
    "query": "search",
    "limit": 5
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/font-icon-search

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
query string no Search text, e.g. "search", "trash", "arrow". Matches name, keywords, CSS class, and category, with one-typo tolerance on words of 4+ letters.
library string (Font Awesome | Heroicons | Lucide | Material Icons) no Only icons from this library.
category string no Only icons in this category. One of: Accessibility, Alerts, Arrows, Charts, Commerce, Communication, Devices, Editing, Files, General, Layout, Maps, Media, Navigation, Social, Weather.
limit integer no Maximum results to return (1-200). Default 50. Default: 50.

Example arguments (verified)

{
  "query": "search",
  "limit": 5
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:font_icon_search after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Font Icon Search →

More Developer tools