fuzzy_search_categories
Find Lucide Icons categories using fuzzy search by entering a query term and specifying the number of results to display. Simplifies locating relevant icon categories efficiently.
Instructions
Fuzzy Search for icon categories by category name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Max results to return | |
query | Yes | Search term for category name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Max results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search term for category name",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}