> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetstream.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetstream.ai/_mcp/server.

# JigsawStack

> Use JigsawStack to transcribe meeting bot recordings: automatic language detection, optional translation, and per-speaker output — full config reference with defaults.

JigsawStack transcribes the recording post-call with automatic language detection and per-speaker output on by default.

## Enable

```json
{
  "meeting_link": "https://meet.google.com/abc-defg-hij",
  "bot_name": "Notetaker",
  "recording_config": {
    "transcript": {
      "provider": { "jigsawstack": { "by_speaker": true } }
    }
  }
}
```

CLI: `meetstream bot create <link> -t jigsawstack`.

## Configuration reference

| Field        | Type    | Default | Notes                          |
| ------------ | ------- | ------- | ------------------------------ |
| `language`   | string  | `auto`  | Automatic detection by default |
| `translate`  | boolean | `false` |                                |
| `by_speaker` | boolean | `true`  | Per-speaker output             |

## Fetch the transcript

Resolve `transcript_id` via `GET /bots/{bot_id}/detail`, then `GET /transcript/{transcript_id}/get_transcript`. Compare engines: [Transcription Providers](/guides/transcription-recordings/providers/transcription-providers).