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

> List all published Shipstar changelogs, newest first

List every published changelog for your project, ordered from most recent to oldest.

## Arguments

This tool takes no arguments.

## Returns

An array of changelog objects. Each object is the parsed JSON payload of the changelog (`headline`, `summary`, `items`, etc.) plus a `slug` field you can pass to [`get_changelog`](/mcp/changelog/get-changelog).

```json theme={null}
[
  {
    "slug": "march-2026-release",
    "headline": "Content calendar + GitHub-powered generation",
    "summary": "Your entire content workflow, in one place.",
    "items": [
      { "title": "Content Calendar", "description": "..." },
      { "title": "Drafts hub", "description": "..." }
    ]
  }
]
```

Entries whose stored JSON is malformed are skipped silently so one bad row never breaks the list.

## Example prompts

> "What features did we ship this month? Use the Shipstar tools."

> "Summarise our last three releases into bullet points I can paste into a weekly update."

> "Find every changelog entry that mentions webhooks and quote the relevant item descriptions."
