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

# get_dynamic_sequences

> List sequence blueprints (dynamic sequences) for a sourcing.

Read-only MCP tool that returns paginated sequence blueprints attached to a sourcing in the authenticated workspace.

Use this before `start_dynamic_sequences` when you need to discover which `blueprintId` to start.

## Input

| Parameter    | Type    | Required | Description                               |
| ------------ | ------- | -------- | ----------------------------------------- |
| `sourcingId` | string  | yes      | Sourcing id                               |
| `page`       | integer | no       | Zero-based page index (default `0`)       |
| `pageSize`   | integer | no       | Page size, max `50` (default `20`)        |
| `search`     | string  | no       | Case-insensitive filter on blueprint name |

## Output

JSON with:

* `sequenceBlueprints` — `blueprintId`, `name`, `sourcingId`, `createdAt`, `updatedAt`, `steps`, `stepCount`, `channels`
* `pagination` — `page`, `pageSize`, `total`, `hasNextPage`

Returned steps do not expose internal `workspaceId` or `userId` fields.

## Example flow

1. `create_sourcing`
2. `add_talent_to_sourcing`
3. `get_dynamic_sequences` with `sourcingId`
4. `start_dynamic_sequences` with `blueprintId` from the list

See also [start\_dynamic\_sequences](/mcp/start-dynamic-sequences) and [create\_sequence\_blueprint](/mcp/create-sequence-blueprint).
