> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shipstar.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# list_kb_article_sets

> List all published Shipstar knowledge base article sets, newest first

List every published knowledge base article set. Each "set" bundles multiple articles under a single slug so you can group related how-tos together.

## Arguments

This tool takes no arguments.

## Returns

An array of article set objects:

| Field          | Type           | Description                                                                  |
| -------------- | -------------- | ---------------------------------------------------------------------------- |
| `slug`         | string         | Public slug, usable with [`get_kb_article_set`](/mcp/kb/get-kb-article-set). |
| `articles`     | array          | List of article objects (`id`, `title`, `content`, ...).                     |
| `published_at` | string \| null | ISO-8601 timestamp of the latest update.                                     |
| `created_at`   | string \| null | ISO-8601 timestamp when the set was first generated.                         |

```json theme={null}
[
  {
    "slug": "shipstar-knowledge-base",
    "articles": [
      {
        "id": "1",
        "title": "Editing Blog Post Drafts with Rich Text Formatting",
        "content": "You can now edit generated blog post drafts..."
      }
    ],
    "published_at": "2026-04-01T12:00:00+00:00",
    "created_at": "2026-03-28T09:15:00+00:00"
  }
]
```

Sets whose stored content is not valid JSON are skipped silently — bad data never breaks the list.

## Example prompts

> "List our KB sets and tell me which articles cover authentication."

> "Find every KB article that mentions 'webhook' and give me the article titles."
