@@ -429,6 +429,7 @@ def get_node_details_dev(
429429 return [
430430 ToolDefinition (
431431 fn = build ,
432+ title = "dbt build" ,
432433 description = get_prompt ("dbt_cli/build" ),
433434 annotations = create_tool_annotations (
434435 title = "dbt build" ,
@@ -439,6 +440,7 @@ def get_node_details_dev(
439440 ),
440441 ToolDefinition (
441442 fn = compile ,
443+ title = "dbt compile" ,
442444 description = get_prompt ("dbt_cli/compile" ),
443445 annotations = create_tool_annotations (
444446 title = "dbt compile" ,
@@ -449,6 +451,7 @@ def get_node_details_dev(
449451 ),
450452 ToolDefinition (
451453 fn = docs ,
454+ title = "dbt docs" ,
452455 description = get_prompt ("dbt_cli/docs" ),
453456 annotations = create_tool_annotations (
454457 title = "dbt docs" ,
@@ -460,6 +463,7 @@ def get_node_details_dev(
460463 ToolDefinition (
461464 name = "list" ,
462465 fn = ls ,
466+ title = "dbt list" ,
463467 description = get_prompt ("dbt_cli/list" ),
464468 annotations = create_tool_annotations (
465469 title = "dbt list" ,
@@ -470,6 +474,7 @@ def get_node_details_dev(
470474 ),
471475 ToolDefinition (
472476 fn = parse ,
477+ title = "dbt parse" ,
473478 description = get_prompt ("dbt_cli/parse" ),
474479 annotations = create_tool_annotations (
475480 title = "dbt parse" ,
@@ -480,6 +485,7 @@ def get_node_details_dev(
480485 ),
481486 ToolDefinition (
482487 fn = run ,
488+ title = "dbt run" ,
483489 description = get_prompt ("dbt_cli/run" ),
484490 annotations = create_tool_annotations (
485491 title = "dbt run" ,
@@ -490,6 +496,7 @@ def get_node_details_dev(
490496 ),
491497 ToolDefinition (
492498 fn = test ,
499+ title = "dbt test" ,
493500 description = get_prompt ("dbt_cli/test" ),
494501 annotations = create_tool_annotations (
495502 title = "dbt test" ,
@@ -500,6 +507,7 @@ def get_node_details_dev(
500507 ),
501508 ToolDefinition (
502509 fn = show ,
510+ title = "dbt show" ,
503511 description = get_prompt ("dbt_cli/show" ),
504512 annotations = create_tool_annotations (
505513 title = "dbt show" ,
@@ -510,6 +518,7 @@ def get_node_details_dev(
510518 ),
511519 ToolDefinition (
512520 fn = clone ,
521+ title = "dbt clone" ,
513522 description = get_prompt ("dbt_cli/clone" ),
514523 annotations = create_tool_annotations (
515524 title = "dbt clone" ,
@@ -521,6 +530,7 @@ def get_node_details_dev(
521530 ToolDefinition (
522531 name = "get_lineage_dev" ,
523532 fn = get_lineage_dev ,
533+ title = "Get Model Lineage (Dev)" ,
524534 description = get_prompt ("dbt_cli/get_lineage_dev" ),
525535 annotations = create_tool_annotations (
526536 title = "Get Model Lineage (Dev)" ,
@@ -532,6 +542,7 @@ def get_node_details_dev(
532542 ToolDefinition (
533543 name = "get_node_details_dev" ,
534544 fn = get_node_details_dev ,
545+ title = "Get Node Details (Dev)" ,
535546 description = get_prompt ("dbt_cli/get_node_details_dev" ),
536547 annotations = create_tool_annotations (
537548 title = "Get Node Details (Dev)" ,
0 commit comments