get_icon_detail_by_prefix_and_name
Retrieve detailed SVG icon information by specifying a prefix and name, enabling precise or batch icon matching for FE/UI/Designers via PickAPIcon MCP.
Instructions
get icon detail by prefix and svg name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prefix | No | icon prefix, default env.PREFIX | |
svg_list | No | icon svg name list, match batch of icons fuzzily | |
svg_name | No | icon svg name, match single icon exactly |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prefix": {
"description": "icon prefix, default env.PREFIX",
"type": "string"
},
"svg_list": {
"description": "icon svg name list, match batch of icons fuzzily",
"items": {
"type": "string"
},
"type": "array"
},
"svg_name": {
"description": "icon svg name, match single icon exactly",
"type": "string"
}
},
"type": "object"
}