nereid 0.9.0

Source-available noncommercial terminal diagram TUI and MCP server for Mermaid-backed sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
// SPDX-FileCopyrightText: 2026 Bruno Meilick
// SPDX-License-Identifier: LicenseRef-Nereid-FreeUse-NoCopy-NoDerivatives
//
// All rights reserved.
//
// This file is part of Nereid and is proprietary software.
// Unauthorized copying, modification, or distribution is prohibited.

//! MCP tool JSON types and schemars schemas.
//!
//! Agent-facing contract (underscore tool names, snake_case op tags). Lifecycle groups:
//! diagram tools, walkthrough, collab (attention/selection/follow-AI), and queries.
//! Keep in sync with `tool_schema.snapshot.json` after field changes.

use std::collections::BTreeMap;

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Lightweight diagram listing row for MCP list/current responses.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramSummary {
    pub diagram_id: String,
    pub name: String,
    pub kind: String,
    pub rev: u64,
}

/// `diagram_list` payload with co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ListDiagramsResponse {
    pub diagrams: Vec<DiagramSummary>,
    pub context: ReadContext,
}

/// Lightweight walkthrough row for list responses.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughSummary {
    pub walkthrough_id: String,
    pub title: String,
    pub rev: u64,
    pub nodes: u64,
    pub edges: u64,
}

/// `walkthrough_list` payload with co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ListWalkthroughsResponse {
    pub walkthroughs: Vec<WalkthroughSummary>,
    pub context: ReadContext,
}

/// Params for `walkthrough_get`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct WalkthroughGetParams {
    pub walkthrough_id: String,
}

/// Params for `walkthrough_get_node`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct WalkthroughGetNodeParams {
    pub walkthrough_id: String,
    pub node_id: String,
}

/// Wire form of a walkthrough node (body, object refs, tags, status).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpWalkthroughNode {
    pub node_id: String,
    pub title: String,
    pub body_md: Option<String>,
    pub refs: Vec<String>,
    pub tags: Vec<String>,
    pub status: Option<String>,
}

/// Single-node walkthrough read response.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughGetNodeResponse {
    pub node: McpWalkthroughNode,
    pub context: ReadContext,
}

/// Wire form of a directed walkthrough edge.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpWalkthroughEdge {
    pub from_node_id: String,
    pub to_node_id: String,
    pub kind: String,
    pub label: Option<String>,
}

/// Full walkthrough payload for get/apply responses.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpWalkthrough {
    pub walkthrough_id: String,
    pub title: String,
    pub rev: u64,
    pub nodes: Vec<McpWalkthroughNode>,
    pub edges: Vec<McpWalkthroughEdge>,
}

/// `walkthrough_get` payload with co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughGetResponse {
    pub walkthrough: McpWalkthrough,
    pub context: ReadContext,
}

/// Node/edge counts inside a walkthrough digest.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughDigestCounts {
    pub nodes: u64,
    pub edges: u64,
}

/// Cheap walkthrough fingerprint (rev + counts) without full body.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughDigest {
    pub rev: u64,
    pub counts: WalkthroughDigestCounts,
}

/// `walkthrough_get_digest` response.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughGetDigestResponse {
    pub digest: WalkthroughDigest,
    pub context: ReadContext,
}

/// Unicode walkthrough preview from `walkthrough_render_text`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughRenderTextResponse {
    pub text: String,
    pub context: ReadContext,
}

/// Unicode diagram preview from `diagram_render_text`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramRenderTextResponse {
    pub text: String,
    pub context: ReadContext,
}

/// Params for cross-diagram `route_find`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct RouteFindParams {
    pub from_ref: String,
    pub to_ref: String,
    pub limit: Option<u64>,
    pub max_hops: Option<u64>,
    pub ordering: Option<String>,
}

/// Ordered paths of object refs between two endpoints.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct RouteFindResponse {
    pub routes: Vec<Vec<String>>,
}

/// Params for `diagram_open` (set session active diagram).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramOpenParams {
    pub diagram_id: String,
}

/// Confirms the new session-active diagram id.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramOpenResponse {
    pub active_diagram_id: String,
}

/// Params for `diagram_delete`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramDeleteParams {
    pub diagram_id: String,
}

/// Delete result including any new active diagram after removal.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramDeleteResponse {
    pub deleted_diagram_id: String,
    pub active_diagram_id: Option<String>,
}

/// Session-active diagram id plus co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramCurrentResponse {
    pub active_diagram_id: Option<String>,
    pub context: ReadContext,
}

/// Params for `walkthrough_open`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct WalkthroughOpenParams {
    pub walkthrough_id: String,
}

/// Confirms the new session-active walkthrough id.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughOpenResponse {
    pub active_walkthrough_id: String,
}

/// Session-active walkthrough id plus co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughCurrentResponse {
    pub active_walkthrough_id: Option<String>,
    pub context: ReadContext,
}

/// Human or agent attention spotlight (object + diagram) for collab tools.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct AttentionReadResponse {
    pub object_ref: Option<String>,
    pub diagram_id: Option<String>,
    pub context: ReadContext,
}

/// Params for `attention_agent_set` (agent highlight spotlight).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct AttentionAgentSetParams {
    pub object_ref: String,
}

/// Confirms agent attention after set.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct AttentionSetResponse {
    pub object_ref: String,
    pub diagram_id: String,
}

/// Count of cleared agent attention entries.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct AttentionClearResponse {
    pub cleared: u64,
}

/// Whether TUI follow-AI camera is enabled.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FollowAiReadResponse {
    pub enabled: bool,
    pub context: ReadContext,
}

/// Params for `follow_ai_set`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct FollowAiSetParams {
    pub enabled: bool,
}

/// Confirms follow-AI after set.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FollowAiSetResponse {
    pub enabled: bool,
}

/// How `selection_update` merges `object_refs` into the multi-select set.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema, Default)]
#[serde(rename_all = "snake_case")]
pub enum UpdateMode {
    #[default]
    Replace,
    Add,
    Remove,
}

/// Current multi-select object refs.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SelectionGetResponse {
    pub object_refs: Vec<String>,
    pub context: ReadContext,
}

/// Params for `selection_update` (replace/add/remove modes).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct SelectionUpdateParams {
    pub object_refs: Vec<String>,
    #[serde(default)]
    pub mode: UpdateMode,
}

/// Applied vs ignored refs from a selection update.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SelectionUpdateResponse {
    pub applied: Vec<String>,
    pub ignored: Vec<String>,
}

/// Diagram canvas scroll offsets for `view_get_state`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ViewScroll {
    pub x: f64,
    pub y: f64,
}

/// Coarse TUI view snapshot (active diagram, scroll, pane visibility).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ViewGetStateResponse {
    pub active_diagram_id: Option<String>,
    pub scroll: ViewScroll,
    pub panes: BTreeMap<String, bool>,
    pub context: ReadContext,
}

/// Per-kind object counts for digests (unused kinds stay 0).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramCounts {
    pub participants: u64,
    pub messages: u64,
    pub nodes: u64,
    pub edges: u64,
    pub classes: u64,
    pub relations: u64,
    pub entities: u64,
    pub relationships: u64,
    pub sections: u64,
    pub tasks: u64,
    pub dependencies: u64,
    pub lanes: u64,
}

/// Cheap diagram fingerprint (`diagram_get_digest`) before full AST/Mermaid reads.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramDigest {
    pub rev: u64,
    pub counts: DiagramCounts,
    pub key_names: Vec<String>,
    pub context: ReadContext,
}

/// Full Mermaid projection + rev for `diagram_read` (fail-closed export).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramSnapshot {
    pub rev: u64,
    pub kind: String,
    pub mermaid: String,
    pub context: ReadContext,
}

/// Optional co-presence fields attached to many read responses (TUI/MCP shared state).
#[derive(Debug, Clone, Default, Serialize, Deserialize, JsonSchema)]
pub struct ReadContext {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub session_active_diagram_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub human_active_diagram_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub human_active_object_ref: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub follow_ai: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ui_rev: Option<u64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ui_session_rev: Option<u64>,
}

/// Create a diagram from raw Mermaid; optional id/name and whether it becomes session-active.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramCreateFromMermaidParams {
    /// Raw Mermaid diagram source (`flowchart`/`graph` or `sequenceDiagram`).
    pub mermaid: String,
    /// Optional explicit diagram id to use; when omitted a unique id is allocated.
    pub diagram_id: Option<String>,
    /// Optional display name; defaults to the chosen diagram id.
    pub name: Option<String>,
    /// When true (default), sets the created diagram as active.
    pub make_active: Option<bool>,
}

/// Create-from-Mermaid result with optional new session-active diagram.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramCreateFromMermaidResponse {
    pub diagram: DiagramSummary,
    pub active_diagram_id: Option<String>,
}

/// Revision-gated Mermaid whole-diagram replace (`base_rev` must match).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramReplaceFromMermaidParams {
    pub diagram_id: Option<String>,
    pub base_rev: u64,
    /// Replacement Mermaid source; kind must match the existing diagram.
    pub mermaid: String,
}

/// Stable-id reconciliation report after Mermaid replace.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramIdentityReport {
    /// Object ids present after replace but not before (new allocations).
    pub newly_allocated: Vec<String>,
    /// Object ids present before replace but not after (dropped/unmatched).
    pub dropped: Vec<String>,
    /// Object ids present both before and after replace.
    pub preserved: Vec<String>,
}

/// Replace result: new rev, identity report, and dangling xrefs.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramReplaceFromMermaidResponse {
    pub new_rev: u64,
    pub diagram_id: String,
    pub kind: String,
    pub identity: DiagramIdentityReport,
    /// XRef ids that are dangling after the replace (from, to, or both).
    pub dangling_xref_ids: Vec<String>,
}

/// Typed AST snapshot from `diagram_get_ast`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramGetAstResponse {
    pub diagram_id: String,
    pub kind: String,
    pub rev: u64,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub default_symbol_repository_id: Option<String>,
    pub ast: McpDiagramAst,
}

/// Frigg symbol anchor on sequence participants / flow nodes.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpSymbolAnchor {
    pub stable_symbol_id: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub repository_id: Option<String>,
}

/// Kind-tagged diagram AST for MCP (structure ops and get_ast).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum McpDiagramAst {
    Sequence {
        participants: Vec<McpSeqParticipantAst>,
        messages: Vec<McpSeqMessageAst>,
        blocks: Vec<McpSeqBlockAst>,
    },
    Flowchart {
        nodes: Vec<McpFlowNodeAst>,
        edges: Vec<McpFlowEdgeAst>,
    },
    Class {
        classes: Vec<McpClassNodeAst>,
        relations: Vec<McpClassRelationAst>,
    },
    Er {
        entities: Vec<McpErEntityAst>,
        relationships: Vec<McpErRelationshipAst>,
    },
    Gantt {
        title: Option<String>,
        date_format: Option<String>,
        sections: Vec<McpGanttSectionAst>,
        tasks: Vec<McpGanttTaskAst>,
        lanes: Vec<McpGanttLaneAst>,
    },
}

/// Class node in MCP AST / object reads.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpClassNodeAst {
    pub class_id: String,
    pub name: String,
    pub attributes: Vec<String>,
    pub methods: Vec<String>,
    pub note: Option<String>,
}

/// UML-ish class relation kind on the wire.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpClassRelationKind {
    Inheritance,
    Composition,
    Aggregation,
    Association,
    Dependency,
    Realization,
    Link,
}

/// Class relation edge in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpClassRelationAst {
    pub relation_id: String,
    pub from_class_id: String,
    pub to_class_id: String,
    pub kind: McpClassRelationKind,
    pub label: Option<String>,
    pub raw_connector: Option<String>,
}

/// ER entity node in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpErEntityAst {
    pub entity_id: String,
    pub name: String,
    pub note: Option<String>,
}

/// ER endpoint cardinality on the wire.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpErCardinality {
    ExactlyOne,
    ZeroOrOne,
    OneOrMore,
    ZeroOrMore,
}

/// Identifying vs non-identifying ER relationship stroke.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpErStroke {
    Identifying,
    NonIdentifying,
}

/// ER relationship edge in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpErRelationshipAst {
    pub relationship_id: String,
    pub from_entity_id: String,
    pub to_entity_id: String,
    pub from_cardinality: McpErCardinality,
    pub to_cardinality: McpErCardinality,
    pub stroke: McpErStroke,
    pub label: Option<String>,
    pub raw_connector: Option<String>,
}

/// Gantt section grouping task ids.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpGanttSectionAst {
    pub section_id: String,
    pub name: String,
    pub task_ids: Vec<String>,
}

/// Gantt task start: absolute date, after another task, or unspecified.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum McpGanttTaskStart {
    Date { date: String },
    After { task_id: String },
    Unspecified,
}

/// Gantt task row in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpGanttTaskAst {
    pub task_id: String,
    pub mermaid_tag: Option<String>,
    pub name: String,
    pub start: McpGanttTaskStart,
    pub duration_days: u32,
    pub raw_duration: String,
    pub note: Option<String>,
}

/// Gantt time-lane header in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpGanttLaneAst {
    pub lane_id: String,
    pub label: String,
    pub note: Option<String>,
}

/// Sequence participant in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpSeqParticipantAst {
    pub participant_id: String,
    pub mermaid_name: String,
    pub role: Option<String>,
    pub note: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub symbol: Option<McpSymbolAnchor>,
}

/// Sequence message in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpSeqMessageAst {
    pub message_id: String,
    pub from_participant_id: String,
    pub to_participant_id: String,
    pub kind: MessageKind,
    pub arrow: Option<String>,
    pub text: String,
    pub order_key: i64,
}

/// Nested alt/opt/loop/par block with sections and child blocks.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpSeqBlockAst {
    pub block_id: String,
    pub kind: McpSeqBlockKind,
    pub header: Option<String>,
    pub sections: Vec<McpSeqSectionAst>,
    pub blocks: Vec<McpSeqBlockAst>,
}

/// Sequence fragment block kind.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpSeqBlockKind {
    Alt,
    Opt,
    Loop,
    Par,
}

/// One section inside a sequence block (main/else/and) owning message ids.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpSeqSectionAst {
    pub section_id: String,
    pub kind: McpSeqSectionKind,
    pub header: Option<String>,
    pub message_ids: Vec<String>,
}

/// Section role within a sequence block.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpSeqSectionKind {
    Main,
    Else,
    And,
}

/// Write-only section kinds for `seq_add_section` (main is created by `seq_add_block`).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum McpSeqSectionAddKind {
    Else,
    And,
}

/// Flowchart node in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpFlowNodeAst {
    pub node_id: String,
    pub label: String,
    pub shape: String,
    pub mermaid_id: Option<String>,
    pub note: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub symbol: Option<McpSymbolAnchor>,
}

/// Flowchart edge in MCP AST.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct McpFlowEdgeAst {
    pub edge_id: String,
    pub from_node_id: String,
    pub to_node_id: String,
    pub label: Option<String>,
    pub connector: Option<String>,
    pub style: Option<String>,
}

/// Kind of object-ref change inside a diagram delta.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum DeltaChangeKind {
    Added,
    Removed,
    Updated,
}

/// One grouped change of object refs between revs.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DeltaChange {
    pub kind: DeltaChangeKind,
    pub refs: Vec<String>,
}

/// `diagram_get_delta` response spanning `from_rev`→`to_rev`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramDeltaResponse {
    pub from_rev: u64,
    pub to_rev: u64,
    pub changes: Vec<DeltaChange>,
}

/// Compact added/removed/updated object refs after apply.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DeltaSummary {
    pub added: Vec<String>,
    pub removed: Vec<String>,
    pub updated: Vec<String>,
}

/// Result of `diagram_apply_ops` / walkthrough apply (new rev + delta).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ApplyOpsResponse {
    pub new_rev: u64,
    pub applied: u64,
    pub delta: DeltaSummary,
}

/// Optional diagram id for tools defaulting to session-active diagram.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramTargetParams {
    pub diagram_id: Option<String>,
}

/// Neighborhood slice around a center object ref.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramGetSliceParams {
    pub diagram_id: Option<String>,
    pub center_ref: String,
    pub radius: Option<u64>,
    pub depth: Option<u64>,
    pub filters: Option<DiagramSliceFilters>,
}

/// Category include/exclude filters for diagram slices.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramSliceFilters {
    pub include_categories: Option<Vec<String>>,
    pub exclude_categories: Option<Vec<String>>,
}

/// Object and edge refs in a `diagram_get_slice` neighborhood.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramGetSliceResponse {
    pub objects: Vec<String>,
    pub edges: Vec<String>,
}

/// Params for `diagram_get_delta` since a known rev.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct GetDeltaParams {
    pub diagram_id: Option<String>,
    pub since_rev: u64,
}

/// Params for `walkthrough_get_delta`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct WalkthroughGetDeltaParams {
    pub walkthrough_id: String,
    pub since_rev: u64,
}

/// Revision-gated diagram structure ops (`base_rev` OCC).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct ApplyOpsParams {
    pub diagram_id: Option<String>,
    pub base_rev: u64,
    pub ops: Vec<McpOp>,
}

/// Revision-gated walkthrough structure ops.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct WalkthroughApplyOpsParams {
    pub walkthrough_id: String,
    pub base_rev: u64,
    pub ops: Vec<McpWalkthroughOp>,
}

/// Dry-run apply params for `diagram_propose_ops` (same shape as apply).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct DiagramProposeOpsParams {
    pub diagram_id: Option<String>,
    pub base_rev: u64,
    pub ops: Vec<McpOp>,
}

/// Proposed-apply preview without persisting (same fields as apply response).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct DiagramProposeOpsResponse {
    pub new_rev: u64,
    pub applied: u64,
    pub delta: DeltaSummary,
}

/// Walkthrough delta since a known rev.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WalkthroughDeltaResponse {
    pub from_rev: u64,
    pub to_rev: u64,
    pub changes: Vec<DeltaChange>,
}

/// Filters for `xref_list` (status, endpoints, dangling).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct XRefListParams {
    pub dangling_only: Option<bool>,
    pub status: Option<String>,
    pub kind: Option<String>,
    pub from_ref: Option<String>,
    pub to_ref: Option<String>,
    pub involves_ref: Option<String>,
    pub label_contains: Option<String>,
    pub limit: Option<u64>,
}

/// One cross-reference row for list tools.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct XRefSummary {
    pub xref_id: String,
    pub from: String,
    pub to: String,
    pub kind: String,
    pub label: Option<String>,
    pub status: String,
}

/// `xref_list` payload.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct XRefListResponse {
    pub xrefs: Vec<XRefSummary>,
}

/// Params for one-hop xref neighborhood traversal.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct XRefNeighborsParams {
    pub object_ref: String,
    pub direction: Option<String>,
}

/// Neighbor object refs via xrefs.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct XRefNeighborsResponse {
    pub neighbors: Vec<String>,
}

/// Params for `xref_add`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct XRefAddParams {
    pub xref_id: String,
    pub from: String,
    pub to: String,
    pub kind: String,
    pub label: Option<String>,
}

/// Created xref id and resolved status.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct XRefAddResponse {
    pub xref_id: String,
    pub status: String,
}

/// Params for `xref_remove`.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct XRefRemoveParams {
    pub xref_id: String,
}

/// Whether the xref existed and was removed.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct XRefRemoveResponse {
    pub removed: bool,
}

/// Params for sequence message trace (forward/back along order).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct SeqTraceParams {
    pub diagram_id: Option<String>,
    pub from_message_id: Option<String>,
    pub direction: Option<String>,
    pub limit: Option<u64>,
}

/// Ordered message ids from a sequence trace.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SeqTraceResponse {
    pub messages: Vec<String>,
}

/// Params for sequence message text search.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct SeqSearchParams {
    pub diagram_id: Option<String>,
    pub needle: String,
    pub mode: Option<String>,
    pub case_insensitive: Option<bool>,
}

/// Message ids matching a sequence search.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SeqSearchResponse {
    pub messages: Vec<String>,
}

/// Filter messages by from/to participant.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct SeqMessagesParams {
    pub diagram_id: Option<String>,
    pub from_participant_id: Option<String>,
    pub to_participant_id: Option<String>,
}

/// Message ids between optional participant endpoints.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SeqMessagesResponse {
    pub messages: Vec<String>,
}

/// Params for flowchart reachability from a start node.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct FlowReachableParams {
    pub diagram_id: Option<String>,
    pub from_node_id: String,
    pub direction: Option<String>,
}

/// Reachable flow node ids.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowReachableResponse {
    pub nodes: Vec<String>,
}

/// Params for nodes not reachable from a start (or graph roots).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct FlowUnreachableParams {
    pub diagram_id: Option<String>,
    pub start_node_id: Option<String>,
}

/// Unreachable flow node ids.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowUnreachableResponse {
    pub nodes: Vec<String>,
}

/// Params for simple paths between two flow nodes.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct FlowPathsParams {
    pub diagram_id: Option<String>,
    pub from_node_id: String,
    pub to_node_id: String,
    pub limit: Option<u64>,
    pub max_extra_hops: Option<u64>,
}

/// Node-id paths between flow endpoints.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowPathsResponse {
    pub paths: Vec<Vec<String>>,
}

/// Detected directed cycles as node-id rings.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowCyclesResponse {
    pub cycles: Vec<Vec<String>>,
}

/// Flow nodes with no outgoing edges.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowDeadEndsResponse {
    pub nodes: Vec<String>,
}

/// Params for flow degree ranking.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct FlowDegreesParams {
    pub diagram_id: Option<String>,
    pub top: Option<u64>,
    pub sort_by: Option<String>,
}

/// One flow node's in/out degree ranking row.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowDegreeNode {
    pub node_ref: String,
    pub label: String,
    pub in_degree: u64,
    pub out_degree: u64,
}

/// Ranked flow nodes by degree.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct FlowDegreesResponse {
    pub nodes: Vec<FlowDegreeNode>,
}

/// Sequence message arrow kind (sync/async/return).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
pub enum MessageKind {
    Sync,
    Async,
    Return,
}

/// Params for `object_read` (single ref and/or batch).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
pub struct ObjectGetParams {
    pub object_ref: Option<String>,
    pub object_refs: Option<Vec<String>>,
}

/// One resolved object for `object_read`.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ObjectGetItem {
    pub object_ref: String,
    pub object: McpObject,
}

/// Batch object payload with co-presence context.
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ObjectGetResponse {
    pub objects: Vec<ObjectGetItem>,
    pub context: ReadContext,
}

/// Kind-tagged object body for `object_read` (mirrors domain categories).
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum McpObject {
    SeqParticipant {
        mermaid_name: String,
        role: Option<String>,
        note: Option<String>,
        #[serde(skip_serializing_if = "Option::is_none")]
        symbol: Option<McpSymbolAnchor>,
    },
    SeqBlock {
        kind: McpSeqBlockKind,
        header: Option<String>,
        section_ids: Vec<String>,
        child_block_ids: Vec<String>,
    },
    SeqSection {
        kind: McpSeqSectionKind,
        header: Option<String>,
        message_ids: Vec<String>,
    },
    SeqMessage {
        from_participant_id: String,
        to_participant_id: String,
        kind: MessageKind,
        arrow: Option<String>,
        text: String,
        order_key: i64,
    },
    FlowNode {
        label: String,
        shape: String,
        mermaid_id: Option<String>,
        note: Option<String>,
        #[serde(skip_serializing_if = "Option::is_none")]
        symbol: Option<McpSymbolAnchor>,
    },
    FlowEdge {
        from_node_id: String,
        to_node_id: String,
        label: Option<String>,
        connector: Option<String>,
        style: Option<String>,
    },
    ClassNode {
        name: String,
        attributes: Vec<String>,
        methods: Vec<String>,
        note: Option<String>,
    },
    ClassRelation {
        from_class_id: String,
        to_class_id: String,
        kind: McpClassRelationKind,
        label: Option<String>,
        raw_connector: Option<String>,
    },
    ErEntity {
        name: String,
        note: Option<String>,
    },
    ErRelationship {
        from_entity_id: String,
        to_entity_id: String,
        from_cardinality: McpErCardinality,
        to_cardinality: McpErCardinality,
        stroke: McpErStroke,
        label: Option<String>,
        raw_connector: Option<String>,
    },
    GanttSection {
        name: String,
        task_ids: Vec<String>,
    },
    GanttTask {
        mermaid_tag: Option<String>,
        name: String,
        start: McpGanttTaskStart,
        duration_days: u32,
        raw_duration: String,
        note: Option<String>,
    },
    GanttLane {
        label: String,
        note: Option<String>,
    },
}

/// Tagged diagram mutation op for `diagram_apply_ops` / `diagram_propose_ops`.
/// Covers sequence (participants/messages/blocks) and flowchart (nodes/edges) structure.
#[derive(Debug, Clone, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum McpOp {
    SeqAddParticipant {
        participant_id: String,
        mermaid_name: String,
    },
    SeqUpdateParticipant {
        participant_id: String,
        mermaid_name: Option<String>,
    },
    SeqSetParticipantNote {
        participant_id: String,
        note: Option<String>,
    },
    SeqSetParticipantSymbol {
        participant_id: String,
        symbol: Option<McpSymbolAnchor>,
    },
    SeqRemoveParticipant {
        participant_id: String,
    },
    SeqAddMessage {
        message_id: String,
        from_participant_id: String,
        to_participant_id: String,
        kind: MessageKind,
        arrow: Option<String>,
        text: String,
        order_key: i64,
        #[serde(default)]
        section_id: Option<String>,
    },
    SeqUpdateMessage {
        message_id: String,
        from_participant_id: Option<String>,
        to_participant_id: Option<String>,
        kind: Option<MessageKind>,
        arrow: Option<String>,
        text: Option<String>,
        order_key: Option<i64>,
    },
    SeqRemoveMessage {
        message_id: String,
    },
    SeqSetMessageSection {
        message_id: String,
        /// Omit or null to detach from all sections.
        #[serde(default)]
        section_id: Option<String>,
    },
    SeqAddBlock {
        block_id: String,
        kind: McpSeqBlockKind,
        #[serde(default)]
        header: Option<String>,
        /// Omit for root blocks.
        #[serde(default)]
        parent_block_id: Option<String>,
        main_section_id: String,
    },
    SeqUpdateBlock {
        block_id: String,
        /// When present, replaces the block header (`null` clears it).
        #[serde(default)]
        header: Option<Option<String>>,
    },
    SeqRemoveBlock {
        block_id: String,
    },
    SeqAddSection {
        section_id: String,
        block_id: String,
        kind: McpSeqSectionAddKind,
        #[serde(default)]
        header: Option<String>,
    },
    SeqUpdateSection {
        section_id: String,
        /// When present, replaces the section header (`null` clears it).
        #[serde(default)]
        header: Option<Option<String>>,
    },
    SeqRemoveSection {
        section_id: String,
    },
    FlowAddNode {
        node_id: String,
        label: String,
        shape: Option<String>,
    },
    FlowUpdateNode {
        node_id: String,
        label: Option<String>,
        shape: Option<String>,
    },
    FlowSetNodeMermaidId {
        node_id: String,
        mermaid_id: Option<String>,
    },
    FlowSetNodeNote {
        node_id: String,
        note: Option<String>,
    },
    FlowSetNodeSymbol {
        node_id: String,
        symbol: Option<McpSymbolAnchor>,
    },
    FlowRemoveNode {
        node_id: String,
    },
    FlowAddEdge {
        edge_id: String,
        from_node_id: String,
        to_node_id: String,
        label: Option<String>,
        connector: Option<String>,
        style: Option<String>,
    },
    FlowUpdateEdge {
        edge_id: String,
        from_node_id: Option<String>,
        to_node_id: Option<String>,
        label: Option<String>,
        connector: Option<String>,
        style: Option<String>,
    },
    FlowRemoveEdge {
        edge_id: String,
    },
}

/// Tagged walkthrough mutation for `walkthrough_apply_ops` (nodes/edges/title).
#[derive(Debug, Clone, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum McpWalkthroughOp {
    SetTitle {
        title: String,
    },
    AddNode {
        node_id: String,
        title: String,
        body_md: Option<String>,
        refs: Option<Vec<String>>,
        tags: Option<Vec<String>>,
        status: Option<String>,
    },
    UpdateNode {
        node_id: String,
        title: Option<String>,
        body_md: Option<Option<String>>,
        refs: Option<Vec<String>>,
        tags: Option<Vec<String>>,
        status: Option<Option<String>>,
    },
    RemoveNode {
        node_id: String,
    },
    AddEdge {
        from_node_id: String,
        to_node_id: String,
        kind: String,
        label: Option<String>,
    },
    UpdateEdge {
        from_node_id: String,
        to_node_id: String,
        kind: String,
        label: Option<Option<String>>,
    },
    RemoveEdge {
        from_node_id: String,
        to_node_id: String,
        kind: String,
    },
}