Skip to main content
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:
FieldTypeDescription
slugstringPublic slug, usable with get_kb_article_set.
articlesarrayList of article objects (id, title, content, …).
published_atstring | nullISO-8601 timestamp of the latest update.
created_atstring | nullISO-8601 timestamp when the set was first generated.
[
  {
    "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.”