Skip to main content

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.

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

ParameterTypeRequiredDescription
sourcingIdstringyesSourcing id
pageintegernoZero-based page index (default 0)
pageSizeintegernoPage size, max 50 (default 20)
searchstringnoCase-insensitive filter on blueprint name

Output

JSON with:
  • sequenceBlueprintsblueprintId, name, sourcingId, createdAt, updatedAt, steps, stepCount, channels
  • paginationpage, 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 and create_sequence_blueprint.