list_collections

Pack: iconify · Endpoint: https://gateway.pipeworx.io/iconify/mcp

Browse available icon collections. Returns prefix, name, icon count, author, license, and category. Use the prefix with search_icons or get_icons.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/iconify/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_collections","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_collections', {});

Response shape

Always returns: total, collections

FieldTypeDescription
totalnumberTotal number of available collections
collectionsarrayArray of collection metadata objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of available collections"
    },
    "collections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "prefix": {
            "type": "string",
            "description": "Collection prefix identifier"
          },
          "name": {
            "type": "string",
            "description": "Human-readable collection name"
          },
          "total_icons": {
            "type": "number",
            "description": "Number of icons in the collection"
          },
          "category": {
            "type": [
              "string",
              "null"
            ],
            "description": "Collection category or null if not specified"
          },
          "author": {
            "type": [
              "string",
              "null"
            ],
            "description": "Author name or null if not specified"
          },
          "license": {
            "type": [
              "string",
              "null"
            ],
            "description": "License title or null if not specified"
          }
        },
        "required": [
          "prefix",
          "name",
          "total_icons",
          "category",
          "author",
          "license"
        ]
      },
      "description": "Array of collection metadata objects"
    }
  },
  "required": [
    "total",
    "collections"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "iconify": {
      "url": "https://gateway.pipeworx.io/iconify/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026