> ## 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.

# get_kb_article_set

> Fetch a single published knowledge base article set by slug

Retrieve one published knowledge base article set, including the full content of every article in the set.

## Arguments

| Name   | Type   | Description                                                                           |
| ------ | ------ | ------------------------------------------------------------------------------------- |
| `slug` | string | The `public_slug` returned by [`list_kb_article_sets`](/mcp/kb/list-kb-article-sets). |

## Returns

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

## Errors

Raises an error if:

* No published KB set exists with that slug.
* The stored content is not valid JSON.

## Example prompts

> "Get the `shipstar-knowledge-base` set and answer: 'How do I edit a blog post draft?' using only the content of the articles."

> "Fetch our KB set and list every article title as a table of contents."
