Common Workflows
Step-by-step MCP tool sequences for common tasks.
Create a New Flow with Blocks
Update a Prompt and Republish
Add a Loop Over Items
Add Structured Output with Object Models
Reorganize Flow Structure
Test a Flow
Debug a Failed Test
Key Patterns
- Always start with
hydrate_project— understand state before making changes - Use sibling-relative mode for
add_blockwhen possible (target_id+direction) - Publish after changes — unpublished changes don't affect the API
- Set production version to make a published version live
- Checkpoint before major prompt changes — easy to compare iterations
- Use
run_all_testsafter prompt changes — verify no regressions across all test cases - Use
get_test_run_traceto debug failures — see exact inputs/outputs per block