fuzzy_search_icons
Search for Lucide Icons by name using flexible matching. Retrieve relevant results by entering a query, with options to limit the number of results returned.
Instructions
Fuzzy Search for icons from lucide by icon name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Max results to return | |
query | Yes | Search term for icon name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "Max results to return",
"maximum": 300,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search term for icon name",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}