search_icons
Find icons by name or category from Heroicons library. Filter results by style (solid or outline) and set a limit for the number of icons returned.
Instructions
Search for icons from heroicons by name or category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category to filter by (optional) | |
limit | No | Max results to return | |
query | Yes | Search term for icon name or category | |
style | No | Icon style: solid or outline |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "Category to filter by (optional)",
"type": "string"
},
"limit": {
"default": 20,
"description": "Max results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search term for icon name or category",
"type": "string"
},
"style": {
"description": "Icon style: solid or outline",
"enum": [
"solid",
"outline"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}