iconfont_list_projects
Retrieve and display all icon projects from your Iconfont account, showing project details like ID, name, and icon count for management and reference.
Instructions
List all projects in the user's Iconfont account.
This tool requires authentication via Iconfont cookie. It returns all projects that the user has created or has access to.
Args:
cookie (string, optional): The EGG_SESS_ICONFONT cookie from iconfont.cn. Can be used instead of setting environment variable.
response_format ('markdown' | 'json', optional): Output format (default: markdown)
Returns: For JSON format: { projects: [{ id, name, icon_count, updated_at }] } For markdown: Human-readable list of projects
Note: Requires authentication. Can provide cookie via args, ICONFONT_COOKIE environment variable, or iconfont_login tool. Cookie can be obtained from browser dev tools after logging into iconfont.cn.
Examples:
Use when: "See all my icon projects"
Use when: "Find project ID for a specific project"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cookie | No | The EGG_SESS_ICONFONT cookie from iconfont.cn. Can be used instead of setting environment variable. | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |