List Cisco Network Icons
cisco_list_iconsBrowse and filter the Cisco network diagram icon catalog. Retrieve metadata for curated or all icons by category, with pagination, to find icons for topology diagrams.
Instructions
List icons from the 308-icon Cisco Systems Corporate Iconography catalog, optionally filtered by category, with pagination.
Defaults to curated_only=true, returning the 29 icons most relevant for teaching/enterprise network diagrams (router, switch, firewall, server, access point, cloud, etc.). Set curated_only=false to browse the full catalog (legacy/specific Cisco products, generic devices, people/buildings/phones icons).
Does NOT return image bytes — call cisco_get_icon with an id from the results to fetch the actual image.
Args:
curated_only (boolean, default true): restrict to the 29 curated icons
category (string, optional): filter by category id (see cisco_list_categories)
limit (number, default 50, max 100): page size
offset (number, default 0): pagination offset
Returns JSON: { "total": number, "count": number, "offset": number, "results": [ { "id": string, "name": string, "category": string, "curated": boolean, "description": string } ], "has_more": boolean, "next_offset": number | null }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default 50). | |
| offset | No | Number of results to skip, for pagination through the full catalog. | |
| category | No | Optional category id to filter by (see cisco_list_categories for valid ids). | |
| curated_only | No | If true (default), list only the 29 curated icons — common classroom/enterprise equipment with full pedagogical context. Set false to list the entire 308-icon catalog. |