iconfont_project_search_icons
Search for icons within a specific Iconfont project using keywords to find relevant icons quickly. Requires project ID and authentication.
Instructions
Search for icons within a specific Iconfont project using keyword.
This tool searches icons inside a specific project that the user has access to. Requires authentication via Iconfont cookie.
Args:
cookie (string, optional): The EGG_SESS_ICONFONT cookie from iconfont.cn. Can be used instead of setting environment variable.
pid (string, required): Project ID (can be obtained from iconfont_list_projects)
keyword (string, required): Keyword to search for icons within the project
page (number, optional): Page number for pagination (default: 1)
response_format ('markdown' | 'json', optional): Output format (default: markdown)
Returns: For JSON format: { total: number, page: number, icons: [...] } For markdown: Human-readable list with icon names and IDs
Note: Requires authentication. Can provide cookie via args, ICONFONT_COOKIE environment variable, or iconfont_login tool.
Examples:
Use when: "Search copy icons in project 1997925" -> pid="1997925", keyword="copy"
Use when: "Search text formatting icons in my project" -> pid="123456", keyword="text"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cookie | No | The EGG_SESS_ICONFONT cookie from iconfont.cn. Can be used instead of setting environment variable. | |
| pid | Yes | Project ID (can be obtained from iconfont_list_projects) | |
| keyword | Yes | Keyword to search for icons within the project | |
| page | No | Page number for pagination | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |