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

# ListChapters

> Get all chapters in a project via MCP

## Overview

Retrieves all chapters for a specific video project.

## Parameters

<ParamField path="project_id" type="string" required>
  The project ID (e.g., `prj_abc123xyz`)
</ParamField>

## Returns

Returns an array of chapters for the specified project.

## Example Usage

### In Claude

```
Show me the chapters in project prj_abc123xyz
```

```
What chapters are in my Product Demo project?
```

### Direct Tool Call

```json theme={null}
{
  "name": "ListChapters",
  "arguments": {
    "project_id": "prj_abc123xyz"
  }
}
```

### Response

```json theme={null}
{
  "project_id": "prj_abc123xyz",
  "chapters": [
    {
      "id": "cht_def456uvw",
      "project_id": "prj_abc123xyz",
      "name": "Introduction",
      "duration": 30,
      "created_at": "2025-12-02T10:01:00Z"
    },
    {
      "id": "cht_ghi789rst",
      "project_id": "prj_abc123xyz",
      "name": "Main Content",
      "duration": 60,
      "created_at": "2025-12-02T10:02:00Z"
    }
  ]
}
```

## Common Use Cases

<AccordionGroup>
  <Accordion title="Review structure" icon="sitemap">
    ```
    What's the structure of my video?
    ```
  </Accordion>

  <Accordion title="Check chapter count" icon="hashtag">
    ```
    How many chapters does my project have?
    ```
  </Accordion>

  <Accordion title="Find specific chapter" icon="magnifying-glass">
    ```
    Does my project have an intro chapter?
    ```
  </Accordion>
</AccordionGroup>

## REST API Equivalent

This tool calls: `GET /api/v1/projects/{projectId}/chapters`

See the [List Chapters API documentation](/api-reference/chapters/list) for more details.
