sqry-mcp 7.2.0

MCP server for sqry semantic code search
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
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
//! Schemars-derived parameter types for MCP tools.
//!
//! These types use serde for deserialization with defaults and
//! schemars for JSON schema generation. They replace the manual
//! validation in `validation.rs` for the rmcp migration.
//!
//! ## Canonical Types
//!
//! This module imports canonical schema types from `sqry_core::schema` and
//! provides JsonSchema-compatible wrappers for MCP tool schema generation.
//! The canonical types are the single source of truth for semantic enums.

use crate::error::RpcError;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

// Import canonical types from sqry_core::schema
// These are re-exported with JsonSchema wrappers for MCP compatibility
use sqry_core::schema::{
    ChangeKind as CoreChangeKind, CycleKind as CoreCycleKind, DuplicateKind as CoreDuplicateKind,
    OutputFormat as CoreOutputFormat, RelationKind as CoreRelationKind,
    UnusedScope as CoreUnusedScope, Visibility as CoreVisibility,
};

// ============================================================================
// Helper Types
// ============================================================================

/// Structured search filter object for narrowing `semantic_search` and
/// `hierarchical_search` results by language, symbol kind, visibility, or
/// minimum relevance score.
///
/// **This is a JSON object, not a query string.** Pass it as the `filters`
/// parameter alongside the `query` parameter.
///
/// For string-style filtering, use query predicates like `lang:rust` in the
/// `query` parameter instead.
///
/// # Example (JSON)
///
/// ```json
/// {
///   "language": ["rust", "typescript"],
///   "symbol_kind": ["function", "method"],
///   "visibility": "public",
///   "score_min": 0.5
/// }
/// ```
///
/// # Query predicates vs structured filters
///
/// | Approach | Parameter | Syntax |
/// |----------|-----------|--------|
/// | Query predicates | `query` | `"lang:rust kind:function vis:public"` |
/// | Structured filters | `filters` | `{"language":["rust"],"symbol_kind":["function"],"visibility":"public"}` |
///
/// Both can be combined: use `query` for complex boolean expressions
/// (AND/OR/NOT/regex) and `filters` for simple pre-filtering.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
#[serde(default)]
pub struct SearchFiltersParams {
    /// Limit results to specific programming languages.
    ///
    /// Example: `["rust", "typescript", "python"]`
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub language: Vec<String>,

    /// Filter by symbol visibility (`"public"` or `"private"`).
    ///
    /// Example: `"public"`
    #[serde(skip_serializing_if = "Option::is_none")]
    pub visibility: Option<VisibilityParam>,

    /// Filter by symbol kinds such as `"function"`, `"method"`, `"class"`,
    /// `"struct"`, `"trait"`, `"interface"`, `"enum"`, etc.
    ///
    /// Example: `["function", "method"]`
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub symbol_kind: Vec<String>,

    /// Minimum semantic relevance score (0.0 – 1.0). Results below this
    /// threshold are excluded.
    ///
    /// Example: `0.5`
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(range(min = 0.0, max = 1.0))]
    pub score_min: Option<f64>,
}

/// Visibility filter.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
pub enum VisibilityParam {
    Public,
    Private,
}

impl From<VisibilityParam> for CoreVisibility {
    fn from(v: VisibilityParam) -> Self {
        match v {
            VisibilityParam::Public => CoreVisibility::Public,
            VisibilityParam::Private => CoreVisibility::Private,
        }
    }
}

impl From<CoreVisibility> for VisibilityParam {
    fn from(v: CoreVisibility) -> Self {
        match v {
            CoreVisibility::Public => VisibilityParam::Public,
            CoreVisibility::Private => VisibilityParam::Private,
        }
    }
}

/// Pagination parameters.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
#[serde(default)]
pub struct PaginationParams {
    /// Opaque cursor returned from previous page
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,

    /// Number of results per page
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(range(min = 1, max = 500))]
    pub page_size: Option<i64>,
}

/// Relation type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
pub enum RelationTypeParam {
    Callers,
    Callees,
    Imports,
    Exports,
    Returns,
}

impl From<RelationTypeParam> for CoreRelationKind {
    fn from(r: RelationTypeParam) -> Self {
        match r {
            RelationTypeParam::Callers => CoreRelationKind::Callers,
            RelationTypeParam::Callees => CoreRelationKind::Callees,
            RelationTypeParam::Imports => CoreRelationKind::Imports,
            RelationTypeParam::Exports => CoreRelationKind::Exports,
            RelationTypeParam::Returns => CoreRelationKind::Returns,
        }
    }
}

impl From<CoreRelationKind> for RelationTypeParam {
    fn from(r: CoreRelationKind) -> Self {
        match r {
            CoreRelationKind::Callers => RelationTypeParam::Callers,
            CoreRelationKind::Callees => RelationTypeParam::Callees,
            CoreRelationKind::Imports => RelationTypeParam::Imports,
            CoreRelationKind::Exports => RelationTypeParam::Exports,
            CoreRelationKind::Returns => RelationTypeParam::Returns,
        }
    }
}

/// Output format.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
#[derive(Default)]
pub enum GraphFormatParam {
    #[default]
    Json,
    Dot,
    D2,
    Mermaid,
}

impl From<GraphFormatParam> for CoreOutputFormat {
    fn from(f: GraphFormatParam) -> Self {
        match f {
            GraphFormatParam::Json => CoreOutputFormat::Json,
            GraphFormatParam::Dot => CoreOutputFormat::Dot,
            GraphFormatParam::D2 => CoreOutputFormat::D2,
            GraphFormatParam::Mermaid => CoreOutputFormat::Mermaid,
        }
    }
}

impl From<CoreOutputFormat> for GraphFormatParam {
    fn from(f: CoreOutputFormat) -> Self {
        match f {
            CoreOutputFormat::Json => GraphFormatParam::Json,
            CoreOutputFormat::Dot => GraphFormatParam::Dot,
            CoreOutputFormat::D2 => GraphFormatParam::D2,
            CoreOutputFormat::Mermaid => GraphFormatParam::Mermaid,
        }
    }
}

/// Edge kinds.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
pub enum EdgeKindParam {
    Calls,
    Imports,
    Exports,
    Returns,
}

/// Change type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum ChangeTypeParam {
    Added,
    Removed,
    Modified,
    Renamed,
    SignatureChanged,
}

impl From<ChangeTypeParam> for CoreChangeKind {
    fn from(c: ChangeTypeParam) -> Self {
        match c {
            ChangeTypeParam::Added => CoreChangeKind::Added,
            ChangeTypeParam::Removed => CoreChangeKind::Removed,
            ChangeTypeParam::Modified => CoreChangeKind::Modified,
            ChangeTypeParam::Renamed => CoreChangeKind::Renamed,
            ChangeTypeParam::SignatureChanged => CoreChangeKind::SignatureChanged,
        }
    }
}

impl From<CoreChangeKind> for ChangeTypeParam {
    fn from(c: CoreChangeKind) -> Self {
        match c {
            CoreChangeKind::Added => ChangeTypeParam::Added,
            CoreChangeKind::Removed => ChangeTypeParam::Removed,
            CoreChangeKind::Modified => ChangeTypeParam::Modified,
            CoreChangeKind::Renamed => ChangeTypeParam::Renamed,
            CoreChangeKind::SignatureChanged => ChangeTypeParam::SignatureChanged,
        }
    }
}

/// Diff filters.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
#[serde(default)]
pub struct SemanticDiffFiltersParams {
    /// Filter by change types
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub change_types: Vec<ChangeTypeParam>,

    /// Filter by symbol kinds (function, class, etc.)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub symbol_kinds: Vec<String>,
}

/// Git version ref.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GitVersionRefParams {
    /// Git ref
    #[serde(rename = "ref")]
    pub git_ref: String,

    /// Optional file path to limit comparison
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,
}

/// Reference symbol.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ReferenceParams {
    pub file_path: String,

    /// Name of the reference symbol
    pub symbol_name: String,
}

// ============================================================================
// Tool Parameter Types
// ============================================================================

/// `semantic_search` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[schemars(example = "json!({
    \"query\": \"kind:function name~=/auth/ visibility:public\",
    \"path\": \"src/\",
    \"max_results\": 50,
    \"context_lines\": 3
})")]
pub struct SemanticSearchParams {
    /// Semantic query expression (supports predicates like `lang:rust`,
    /// `kind:function`, combinators `AND`/`OR`/`NOT`, and regex `name~=/pat/`).
    pub query: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Structured filter object for pre-filtering by language, kind,
    /// visibility, or minimum score. Pass a JSON object — for string-style
    /// predicates, use the `query` parameter instead.
    #[serde(default)]
    pub filters: Option<SearchFiltersParams>,

    #[serde(default = "default_max_results_200")]
    #[schemars(range(min = 1, max = 10000))]
    pub max_results: i64,

    /// Context lines around matches
    #[serde(default = "default_context_lines")]
    #[schemars(range(min = 0, max = 20))]
    pub context_lines: i64,

    /// Include classpath (external dependency) results.
    /// Defaults to false — only workspace results are returned.
    #[serde(default)]
    pub include_classpath: bool,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

/// `hierarchical_search` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[schemars(example = "json!({
    \"query\": \"kind:class name:UserService\",
    \"include_file_context\": true,
    \"include_container_context\": true,
    \"max_files\": 10
})")]
pub struct HierarchicalSearchParams {
    /// Query expression (supports predicates like `lang:rust`,
    /// `kind:function`, combinators `AND`/`OR`/`NOT`, and regex `name~=/pat/`).
    pub query: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Structured filter object for pre-filtering by language, kind,
    /// visibility, or minimum score. Pass a JSON object — for string-style
    /// predicates, use the `query` parameter instead.
    #[serde(default)]
    pub filters: Option<SearchFiltersParams>,

    /// Maximum symbols to return (before file grouping)
    #[serde(default = "default_max_results_200")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    /// Max total symbols
    #[serde(default = "default_max_total_symbols")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_total_symbols: i64,

    /// Context lines around matches
    #[serde(default = "default_context_lines")]
    #[schemars(range(min = 0, max = 20))]
    pub context_lines: i64,

    /// Auto-expand small symbols
    #[serde(default = "default_true")]
    pub auto_merge: bool,

    /// Merge threshold (tokens)
    #[serde(default = "default_merge_threshold")]
    #[schemars(range(min = 0, max = 1000))]
    pub merge_threshold: i64,

    #[serde(default = "default_max_files")]
    #[schemars(range(min = 1, max = 100))]
    pub max_files: i64,

    #[serde(default = "default_max_containers_per_file")]
    #[schemars(range(min = 1, max = 200))]
    pub max_containers_per_file: i64,

    #[serde(default = "default_max_symbols_per_container")]
    #[schemars(range(min = 1, max = 500))]
    pub max_symbols_per_container: i64,

    /// File-level token target
    #[serde(default = "default_file_target_tokens")]
    #[schemars(range(min = 100, max = 10000))]
    pub file_target_tokens: i64,

    /// Container token target
    #[serde(default = "default_container_target_tokens")]
    #[schemars(range(min = 100, max = 5000))]
    pub container_target_tokens: i64,

    /// Symbol token target
    #[serde(default = "default_symbol_target_tokens")]
    #[schemars(range(min = 50, max = 2000))]
    pub symbol_target_tokens: i64,

    /// Context cluster tokens
    #[serde(default = "default_context_cluster_target_tokens")]
    #[schemars(range(min = 100, max = 2000))]
    pub context_cluster_target_tokens: i64,

    /// Include file overview
    #[serde(default)]
    pub include_file_context: bool,

    /// Include container code
    #[serde(default)]
    pub include_container_context: bool,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,

    /// File paths to expand from stubs
    #[serde(default)]
    pub expand_files: Vec<String>,
}

impl HierarchicalSearchParams {
    /// Validate non-empty query (custom validation).
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.query.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "query cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "query"
                }),
            ));
        }
        Ok(())
    }
}

/// `relation_query` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct RelationQueryParams {
    /// Symbol name
    pub symbol: String,

    /// Type of relation to query
    pub relation_type: RelationTypeParam,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_depth_1")]
    #[schemars(range(min = 1, max = 5))]
    pub max_depth: i64,

    #[serde(default = "default_max_results_200")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_50")]
    #[schemars(range(min = 1, max = 500))]
    pub page_size: i64,
}

/// `explain_code` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ExplainCodeParams {
    /// Source file path
    pub file_path: String,

    /// Symbol name within the file
    pub symbol_name: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Include context information
    #[serde(default = "default_true")]
    pub include_context: bool,

    /// Include relations information
    #[serde(default = "default_true")]
    pub include_relations: bool,
}

/// `search_similar` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct SearchSimilarParams {
    /// Reference symbol
    pub reference: ReferenceParams,

    #[serde(default = "default_path")]
    pub path: String,

    /// Min similarity (0.0-1.0)
    #[serde(default = "default_similarity_threshold")]
    #[schemars(range(min = 0.0, max = 1.0))]
    pub similarity_threshold: f64,

    #[serde(default = "default_max_results_20")]
    #[schemars(range(min = 1, max = 200))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_20")]
    #[schemars(range(min = 1, max = 200))]
    pub page_size: i64,
}

/// `show_dependencies` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ShowDependenciesParams {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,

    /// Optional symbol name to focus on
    #[serde(skip_serializing_if = "Option::is_none")]
    pub symbol_name: Option<String>,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_depth_2")]
    #[schemars(range(min = 1, max = 5))]
    pub max_depth: i64,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub page_size: i64,
}

impl ShowDependenciesParams {
    /// Validate XOR constraint: at least one of `file_path` or `symbol_name` must be provided.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.file_path.is_none() && self.symbol_name.is_none() {
            return Err(RpcError::validation_with_data(
                "At least one of file_path or symbol_name must be provided",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "xor",
                    "fields": ["file_path", "symbol_name"]
                }),
            ));
        }
        Ok(())
    }
}

/// `get_index_status` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct GetIndexStatusParams {
    #[serde(default = "default_path")]
    pub path: String,
}

/// `export_graph` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ExportGraphParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// File path with seed symbols
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,

    /// Seed symbol name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub symbol_name: Option<String>,

    /// Multiple seed symbol names (alternative to `symbol_name` for multi-seed exports)
    #[serde(default)]
    pub symbols: Vec<String>,

    #[serde(default)]
    pub format: GraphFormatParam,

    /// Verbose output
    #[serde(default)]
    pub verbose: bool,

    #[serde(default = "default_max_depth_2")]
    #[schemars(range(min = 1, max = 5))]
    pub max_depth: i64,

    #[serde(default = "default_max_results_1000")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_200")]
    #[schemars(range(min = 1, max = 1000))]
    pub page_size: i64,

    /// Edge kinds to include (default: calls only)
    #[serde(default)]
    pub include: Vec<EdgeKindParam>,

    /// Optional language filter for nodes
    #[serde(default)]
    pub languages: Vec<String>,
}

impl ExportGraphParams {
    /// Validate XOR constraint: at least one of `file_path`, `symbol_name`, or `symbols` must be provided.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.file_path.is_none() && self.symbol_name.is_none() && self.symbols.is_empty() {
            return Err(RpcError::validation_with_data(
                "At least one of file_path, symbol_name, or symbols must be provided",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "xor",
                    "fields": ["file_path", "symbol_name", "symbols"]
                }),
            ));
        }
        Ok(())
    }
}

/// `cross_language_edges` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct CrossLanguageEdgesParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Optional caller language filter (e.g., 'TypeScript')
    #[serde(skip_serializing_if = "Option::is_none")]
    pub from_lang: Option<String>,

    /// Optional callee language filter (e.g., 'JavaScript')
    #[serde(skip_serializing_if = "Option::is_none")]
    pub to_lang: Option<String>,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_200")]
    #[schemars(range(min = 1, max = 1000))]
    pub page_size: i64,
}

/// `trace_path` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct TracePathParams {
    pub from_symbol: String,

    pub to_symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_hops")]
    #[schemars(range(min = 1, max = 10))]
    pub max_hops: i64,

    #[serde(default = "default_max_paths")]
    #[schemars(range(min = 1, max = 20))]
    pub max_paths: i64,

    /// Allow cross-language paths
    #[serde(default = "default_true")]
    pub cross_language: bool,

    /// Min edge confidence
    #[serde(default = "default_min_confidence")]
    #[schemars(range(min = 0.0, max = 1.0))]
    pub min_confidence: f64,
}

/// `subgraph` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[allow(clippy::struct_excessive_bools)] // Mirrors tool flags without extra wrapper types.
pub struct SubgraphParams {
    /// Seed symbols to extract context around
    pub symbols: Vec<String>,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_depth_2")]
    #[schemars(range(min = 1, max = 5))]
    pub max_depth: i64,

    /// Max nodes in result
    #[serde(default = "default_max_nodes")]
    #[schemars(range(min = 1, max = 500))]
    pub max_nodes: i64,

    /// Include callers
    #[serde(default = "default_true")]
    pub include_callers: bool,

    /// Include callees
    #[serde(default = "default_true")]
    pub include_callees: bool,

    /// Include import relationships
    #[serde(default)]
    pub include_imports: bool,

    /// Include cross-language edges (HTTP, FFI, etc.)
    #[serde(default = "default_true")]
    pub cross_language: bool,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_50")]
    #[schemars(range(min = 1, max = 200))]
    pub page_size: i64,
}

impl SubgraphParams {
    /// Validate non-empty symbols array (custom validation).
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbols.is_empty() {
            return Err(RpcError::validation_with_data(
                "symbols array must contain at least one symbol",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbols"
                }),
            ));
        }
        Ok(())
    }
}

/// `dependency_impact` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct DependencyImpactParams {
    /// Symbol name
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Maximum depth of transitive dependencies
    #[serde(default = "default_max_depth_3")]
    #[schemars(range(min = 1, max = 10))]
    pub max_depth: i64,

    /// Include affected file paths
    #[serde(default = "default_true")]
    pub include_files: bool,

    /// Include indirect dependencies
    #[serde(default = "default_true")]
    pub include_indirect: bool,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_100")]
    #[schemars(range(min = 1, max = 500))]
    pub page_size: i64,
}

/// `semantic_diff` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct SemanticDiffParams {
    /// Base version for comparison
    pub base: GitVersionRefParams,

    /// Target version for comparison
    pub target: GitVersionRefParams,

    #[serde(default = "default_path")]
    pub path: String,

    /// Include unchanged symbols
    #[serde(default)]
    pub include_unchanged: bool,

    /// Filters for change types and symbol kinds
    #[serde(default)]
    pub filters: Option<SemanticDiffFiltersParams>,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_100")]
    #[schemars(range(min = 1, max = 500))]
    pub page_size: i64,
}

// ============================================================================
// Natural Language Tool (P2-18)
// ============================================================================

/// `sqry_ask` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[schemars(example = "json!({
    \"query\": \"who calls the authenticate function?\",
    \"path\": \".\",
    \"execute\": true
})")]
pub struct SqryAskParams {
    /// Natural language query
    pub query: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Whether to execute the translated command and return results
    #[serde(default)]
    pub execute: bool,
}

// NOTE: Validation is performed in validation.rs via validate_sqry_ask_args().
// The SqryAskParams struct is kept for schema generation via schemars and
// potential future rmcp SDK migration.

// ============================================================================
// Analysis Tool Parameter Types
// ============================================================================

/// Duplicate type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
#[derive(Default)]
pub enum DuplicateTypeParam {
    #[default]
    Body,
    Signature,
    Struct,
}

impl From<DuplicateTypeParam> for CoreDuplicateKind {
    fn from(d: DuplicateTypeParam) -> Self {
        match d {
            DuplicateTypeParam::Body => CoreDuplicateKind::Body,
            DuplicateTypeParam::Signature => CoreDuplicateKind::Signature,
            DuplicateTypeParam::Struct => CoreDuplicateKind::Struct,
        }
    }
}

impl From<CoreDuplicateKind> for DuplicateTypeParam {
    fn from(d: CoreDuplicateKind) -> Self {
        match d {
            CoreDuplicateKind::Body => DuplicateTypeParam::Body,
            CoreDuplicateKind::Signature => DuplicateTypeParam::Signature,
            CoreDuplicateKind::Struct => DuplicateTypeParam::Struct,
        }
    }
}

/// Cycle type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
#[derive(Default)]
pub enum CycleTypeParam {
    #[default]
    Calls,
    Imports,
    Modules,
}

impl From<CycleTypeParam> for CoreCycleKind {
    fn from(c: CycleTypeParam) -> Self {
        match c {
            CycleTypeParam::Calls => CoreCycleKind::Calls,
            CycleTypeParam::Imports => CoreCycleKind::Imports,
            CycleTypeParam::Modules => CoreCycleKind::Modules,
        }
    }
}

impl From<CoreCycleKind> for CycleTypeParam {
    fn from(c: CoreCycleKind) -> Self {
        match c {
            CoreCycleKind::Calls => CycleTypeParam::Calls,
            CoreCycleKind::Imports => CycleTypeParam::Imports,
            CoreCycleKind::Modules => CycleTypeParam::Modules,
        }
    }
}

/// Unused scope.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
#[derive(Default)]
pub enum UnusedScopeParam {
    Public,
    Private,
    Function,
    Struct,
    #[default]
    All,
}

impl From<UnusedScopeParam> for CoreUnusedScope {
    fn from(s: UnusedScopeParam) -> Self {
        match s {
            UnusedScopeParam::Public => CoreUnusedScope::Public,
            UnusedScopeParam::Private => CoreUnusedScope::Private,
            UnusedScopeParam::Function => CoreUnusedScope::Function,
            UnusedScopeParam::Struct => CoreUnusedScope::Struct,
            UnusedScopeParam::All => CoreUnusedScope::All,
        }
    }
}

impl From<CoreUnusedScope> for UnusedScopeParam {
    fn from(s: CoreUnusedScope) -> Self {
        match s {
            CoreUnusedScope::Public => UnusedScopeParam::Public,
            CoreUnusedScope::Private => UnusedScopeParam::Private,
            CoreUnusedScope::Function => UnusedScopeParam::Function,
            CoreUnusedScope::Struct => UnusedScopeParam::Struct,
            CoreUnusedScope::All => UnusedScopeParam::All,
        }
    }
}

/// `find_duplicates` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct FindDuplicatesParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Type of duplicate to find
    #[serde(default)]
    pub duplicate_type: DuplicateTypeParam,

    /// Similarity threshold percentage (0-100)
    #[serde(default = "default_threshold")]
    #[schemars(range(min = 0, max = 100))]
    pub threshold: i64,

    /// Exact matches only
    #[serde(default)]
    pub exact: bool,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

/// `find_cycles` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct FindCyclesParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Type of cycles to detect
    #[serde(default)]
    pub cycle_type: CycleTypeParam,

    /// Minimum cycle depth to report
    #[serde(default = "default_min_depth")]
    #[schemars(range(min = 2))]
    pub min_depth: i64,

    /// Maximum cycle depth to report (unbounded if not set)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_depth: Option<i64>,

    /// Include self-loops
    #[serde(default)]
    pub include_self_loops: bool,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 500))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

/// `find_unused` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct FindUnusedParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Unused scope filter
    #[serde(default)]
    pub scope: UnusedScopeParam,

    /// Filter by languages
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub language: Vec<String>,

    /// Filter by symbol kinds
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub symbol_kind: Vec<String>,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

// ============================================================================
// Default Value Functions
// ============================================================================

fn default_path() -> String {
    ".".to_string()
}

fn default_true() -> bool {
    true
}

fn default_max_results_20() -> i64 {
    20
}

fn default_max_results_200() -> i64 {
    200
}

fn default_max_results_500() -> i64 {
    500
}

fn default_max_results_1000() -> i64 {
    1000
}

fn default_max_total_symbols() -> i64 {
    2000
}

fn default_context_lines() -> i64 {
    3
}

fn default_merge_threshold() -> i64 {
    256
}

fn default_max_files() -> i64 {
    20
}

fn default_max_containers_per_file() -> i64 {
    50
}

fn default_max_symbols_per_container() -> i64 {
    100
}

fn default_file_target_tokens() -> i64 {
    2000
}

fn default_container_target_tokens() -> i64 {
    1500
}

fn default_symbol_target_tokens() -> i64 {
    500
}

fn default_context_cluster_target_tokens() -> i64 {
    768
}

fn default_page_size_20() -> i64 {
    20
}

fn default_page_size_50() -> i64 {
    50
}

fn default_page_size_100() -> i64 {
    100
}

fn default_page_size_200() -> i64 {
    200
}

fn default_max_depth_1() -> i64 {
    1
}

fn default_max_depth_2() -> i64 {
    2
}

fn default_max_depth_3() -> i64 {
    3
}

fn default_max_hops() -> i64 {
    5
}

fn default_max_paths() -> i64 {
    5
}

fn default_max_nodes() -> i64 {
    50
}

fn default_similarity_threshold() -> f64 {
    0.7
}

fn default_min_confidence() -> f64 {
    0.5
}

fn default_threshold() -> i64 {
    80
}

fn default_max_results_100() -> i64 {
    100
}

fn default_min_depth() -> i64 {
    2
}

// ============================================================================
// New Graph-Based Tool Parameter Types
// ============================================================================

/// `is_node_in_cycle` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct IsNodeInCycleParams {
    /// Symbol name
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Type of cycles to check for
    #[serde(default)]
    pub cycle_type: CycleTypeParam,

    /// Minimum cycle depth to consider (default: 2)
    #[serde(default = "default_cycle_min_depth")]
    #[schemars(range(min = 1, max = 100))]
    pub min_depth: usize,

    /// Maximum cycle depth to consider (optional, unbounded by default)
    #[schemars(range(min = 1, max = 100))]
    pub max_depth: Option<usize>,

    /// Include self-loops
    #[serde(default)]
    pub include_self_loops: bool,
}

fn default_cycle_min_depth() -> usize {
    2
}

impl IsNodeInCycleParams {
    /// Validate parameters: non-empty symbol and valid depth ranges.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }

        // min_depth must be at least 1 (0 doesn't make sense for cycle detection)
        if self.min_depth < 1 {
            return Err(RpcError::validation_with_data(
                "min_depth must be at least 1",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "range",
                    "field": "min_depth",
                    "min": 1,
                    "actual": self.min_depth
                }),
            ));
        }

        // If max_depth is provided, it must be >= min_depth
        if let Some(max) = self.max_depth {
            if max < 1 {
                return Err(RpcError::validation_with_data(
                    "max_depth must be at least 1",
                    serde_json::json!({
                        "kind": "validation",
                        "constraint": "range",
                        "field": "max_depth",
                        "min": 1,
                        "actual": max
                    }),
                ));
            }
            if max < self.min_depth {
                return Err(RpcError::validation_with_data(
                    "max_depth must be >= min_depth",
                    serde_json::json!({
                        "kind": "validation",
                        "constraint": "ordering",
                        "field": "max_depth",
                        "min_depth": self.min_depth,
                        "max_depth": max
                    }),
                ));
            }
        }

        Ok(())
    }
}

/// `pattern_search` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct PatternSearchParams {
    /// Substring pattern
    pub pattern: String,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    /// Include classpath (external dependency) results.
    /// Defaults to false — only workspace results are returned.
    #[serde(default)]
    pub include_classpath: bool,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

impl PatternSearchParams {
    /// Validate non-empty pattern.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.pattern.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "pattern cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "pattern"
                }),
            ));
        }
        Ok(())
    }
}

/// `direct_callers` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct DirectCallersParams {
    /// Symbol name
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 500))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

impl DirectCallersParams {
    /// Validate non-empty symbol.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }
        Ok(())
    }
}

/// `direct_callees` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct DirectCalleesParams {
    /// Symbol name
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 500))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

impl DirectCalleesParams {
    /// Validate non-empty symbol.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }
        Ok(())
    }
}

// ============================================================================
// Introspection Tool Parameters
// ============================================================================

/// `list_files` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ListFilesParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Optional language filter
    #[serde(skip_serializing_if = "Option::is_none")]
    pub language: Option<String>,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 10000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

/// `list_symbols` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ListSymbolsParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Optional kind filter (function, method, class, etc.)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub kind: Option<String>,

    /// Optional language filter
    #[serde(skip_serializing_if = "Option::is_none")]
    pub language: Option<String>,

    #[serde(default = "default_max_results_500")]
    #[schemars(range(min = 1, max = 10000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

/// `get_graph_stats` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct GetGraphStatsParams {
    #[serde(default = "default_path")]
    pub path: String,
}

// ============================================================================
// Navigation Tool Parameters
// ============================================================================

/// `get_definition` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GetDefinitionParams {
    /// Symbol name to look up
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,
}

impl GetDefinitionParams {
    /// Validate non-empty symbol.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }
        Ok(())
    }
}

/// `get_references` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GetReferencesParams {
    /// Symbol name to find references for
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,

    /// Whether to include the declaration
    #[serde(default = "default_true")]
    pub include_declaration: bool,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

impl GetReferencesParams {
    /// Validate non-empty symbol.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }
        Ok(())
    }
}

/// `get_hover_info` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GetHoverInfoParams {
    /// Symbol name to get info for
    pub symbol: String,

    #[serde(default = "default_path")]
    pub path: String,
}

impl GetHoverInfoParams {
    /// Validate non-empty symbol.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.symbol.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "symbol cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "symbol"
                }),
            ));
        }
        Ok(())
    }
}

/// `get_document_symbols` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GetDocumentSymbolsParams {
    /// File path to get symbols from
    pub file_path: String,

    #[serde(default = "default_path")]
    pub path: String,
}

impl GetDocumentSymbolsParams {
    /// Validate non-empty `file_path`.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.file_path.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "file_path cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "file_path"
                }),
            ));
        }
        Ok(())
    }
}

/// `get_workspace_symbols` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct GetWorkspaceSymbolsParams {
    /// Query to search for
    pub query: String,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,

    #[serde(default)]
    pub pagination: Option<PaginationParams>,
}

impl GetWorkspaceSymbolsParams {
    /// Validate non-empty query.
    pub fn validate(&self) -> Result<(), RpcError> {
        if self.query.trim().is_empty() {
            return Err(RpcError::validation_with_data(
                "query cannot be empty",
                serde_json::json!({
                    "kind": "validation",
                    "constraint": "non_empty",
                    "field": "query"
                }),
            ));
        }
        Ok(())
    }
}

// ============================================================================
// Insights Tool Parameters
// ============================================================================

/// `get_insights` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct GetInsightsParams {
    #[serde(default = "default_path")]
    pub path: String,
}

/// `complexity_metrics` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct ComplexityMetricsParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Optional target file or symbol to filter
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,

    /// Minimum complexity to report (default: 1)
    #[serde(default = "default_min_complexity")]
    #[schemars(range(min = 1, max = 100))]
    pub min_complexity: u32,

    /// Sort by complexity descending (default: true)
    #[serde(default = "default_true")]
    pub sort_by_complexity: bool,

    #[serde(default = "default_max_results_100")]
    #[schemars(range(min = 1, max = 1000))]
    pub max_results: i64,
}

/// `rebuild_index` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct RebuildIndexParams {
    #[serde(default = "default_path")]
    pub path: String,

    /// Force rebuild
    #[serde(default = "default_true")]
    pub force: bool,
}

/// `expand_cache_status` params.
#[derive(Debug, Clone, Default, Deserialize, Serialize, JsonSchema)]
pub struct ExpandCacheStatusParams {
    /// Workspace path
    #[serde(default = "default_path")]
    pub path: String,
}

fn default_min_complexity() -> u32 {
    1
}

/// Call direction.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "lowercase")]
pub enum CallHierarchyDirection {
    /// Find callers (incoming calls)
    Incoming,
    /// Find callees (outgoing calls)
    Outgoing,
}

/// `call_hierarchy` params.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct CallHierarchyParams {
    /// Symbol name
    pub symbol: String,

    /// File path to disambiguate
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,

    /// Incoming or outgoing
    pub direction: CallHierarchyDirection,

    #[serde(default = "default_path")]
    pub path: String,

    #[serde(default = "default_max_depth_1")]
    #[schemars(range(min = 1, max = 5))]
    pub max_depth: i64,

    #[serde(default = "default_max_results_200")]
    #[schemars(range(min = 1, max = 5000))]
    pub max_results: i64,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub page_token: Option<String>,

    #[serde(default = "default_page_size_50")]
    #[schemars(range(min = 1, max = 500))]
    pub page_size: i64,
}

#[cfg(test)]
mod tests {
    use super::*;
    use schemars::schema_for;

    #[test]
    fn test_semantic_search_params_deser() {
        let json = r#"{"query": "test"}"#;
        let params: SemanticSearchParams = serde_json::from_str(json).unwrap();
        assert_eq!(params.query, "test");
        assert_eq!(params.path, ".");
        assert_eq!(params.max_results, 200);
    }

    #[test]
    fn test_show_dependencies_xor_valid() {
        let params = ShowDependenciesParams {
            file_path: Some("test.rs".to_string()),
            symbol_name: None,
            path: ".".to_string(),
            max_depth: 2,
            max_results: 500,
            page_token: None,
            page_size: 100,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_show_dependencies_xor_invalid() {
        let params = ShowDependenciesParams {
            file_path: None,
            symbol_name: None,
            path: ".".to_string(),
            max_depth: 2,
            max_results: 500,
            page_token: None,
            page_size: 100,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_subgraph_non_empty_valid() {
        let params = SubgraphParams {
            symbols: vec!["foo".to_string()],
            path: ".".to_string(),
            max_depth: 2,
            max_nodes: 50,
            include_callers: true,
            include_callees: true,
            include_imports: false,
            cross_language: true,
            page_token: None,
            page_size: 50,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_subgraph_non_empty_invalid() {
        let params = SubgraphParams {
            symbols: vec![],
            path: ".".to_string(),
            max_depth: 2,
            max_nodes: 50,
            include_callers: true,
            include_callees: true,
            include_imports: false,
            cross_language: true,
            page_token: None,
            page_size: 50,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_schema_generation() {
        // Verify schemars can generate schemas for all types
        let _ = schema_for!(SemanticSearchParams);
        let _ = schema_for!(HierarchicalSearchParams);
        let _ = schema_for!(RelationQueryParams);
        let _ = schema_for!(ExplainCodeParams);
        let _ = schema_for!(SearchSimilarParams);
        let _ = schema_for!(ShowDependenciesParams);
        let _ = schema_for!(GetIndexStatusParams);
        let _ = schema_for!(ExportGraphParams);
        let _ = schema_for!(CrossLanguageEdgesParams);
        let _ = schema_for!(TracePathParams);
        let _ = schema_for!(SubgraphParams);
        let _ = schema_for!(DependencyImpactParams);
        let _ = schema_for!(SemanticDiffParams);
        let _ = schema_for!(SqryAskParams);
        // New graph-based tool params
        let _ = schema_for!(FindCyclesParams);
        let _ = schema_for!(FindDuplicatesParams);
        let _ = schema_for!(FindUnusedParams);
        let _ = schema_for!(IsNodeInCycleParams);
        let _ = schema_for!(PatternSearchParams);
        let _ = schema_for!(DirectCallersParams);
        let _ = schema_for!(DirectCalleesParams);
    }

    // ========================================================================
    // IsNodeInCycleParams validation tests
    // ========================================================================

    #[test]
    fn test_is_node_in_cycle_valid() {
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 2,
            max_depth: None,
            include_self_loops: false,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_is_node_in_cycle_empty_symbol_invalid() {
        let params = IsNodeInCycleParams {
            symbol: String::new(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 2,
            max_depth: None,
            include_self_loops: false,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_is_node_in_cycle_whitespace_symbol_invalid() {
        let params = IsNodeInCycleParams {
            symbol: "   ".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Imports,
            min_depth: 2,
            max_depth: None,
            include_self_loops: false,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_is_node_in_cycle_min_depth_zero_invalid() {
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 0,
            max_depth: None,
            include_self_loops: false,
        };
        let err = params.validate().unwrap_err();
        assert!(err.message.contains("min_depth must be at least 1"));
    }

    #[test]
    fn test_is_node_in_cycle_max_depth_zero_invalid() {
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 1,
            max_depth: Some(0),
            include_self_loops: false,
        };
        let err = params.validate().unwrap_err();
        assert!(err.message.contains("max_depth must be at least 1"));
    }

    #[test]
    fn test_is_node_in_cycle_max_depth_less_than_min_depth_invalid() {
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 5,
            max_depth: Some(3),
            include_self_loops: false,
        };
        let err = params.validate().unwrap_err();
        assert!(err.message.contains("max_depth must be >= min_depth"));
    }

    #[test]
    fn test_is_node_in_cycle_valid_depth_ranges() {
        // min_depth = 1 is valid
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 1,
            max_depth: None,
            include_self_loops: true,
        };
        assert!(params.validate().is_ok());

        // max_depth = min_depth is valid
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 3,
            max_depth: Some(3),
            include_self_loops: false,
        };
        assert!(params.validate().is_ok());

        // max_depth > min_depth is valid
        let params = IsNodeInCycleParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            cycle_type: CycleTypeParam::Calls,
            min_depth: 2,
            max_depth: Some(10),
            include_self_loops: false,
        };
        assert!(params.validate().is_ok());
    }

    // ========================================================================
    // PatternSearchParams validation tests
    // ========================================================================

    #[test]
    fn test_pattern_search_valid() {
        let params = PatternSearchParams {
            pattern: "test".to_string(),
            path: ".".to_string(),
            max_results: 100,
            include_classpath: false,
            pagination: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_pattern_search_empty_pattern_invalid() {
        let params = PatternSearchParams {
            pattern: String::new(),
            path: ".".to_string(),
            max_results: 100,
            include_classpath: false,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_pattern_search_whitespace_pattern_invalid() {
        let params = PatternSearchParams {
            pattern: "   ".to_string(),
            path: ".".to_string(),
            max_results: 100,
            include_classpath: false,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }

    // ========================================================================
    // DirectCallersParams validation tests
    // ========================================================================

    #[test]
    fn test_direct_callers_valid() {
        let params = DirectCallersParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_direct_callers_empty_symbol_invalid() {
        let params = DirectCallersParams {
            symbol: String::new(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_direct_callers_whitespace_symbol_invalid() {
        let params = DirectCallersParams {
            symbol: "   ".to_string(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }

    // ========================================================================
    // DirectCalleesParams validation tests
    // ========================================================================

    #[test]
    fn test_direct_callees_valid() {
        let params = DirectCalleesParams {
            symbol: "my_function".to_string(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_direct_callees_empty_symbol_invalid() {
        let params = DirectCalleesParams {
            symbol: String::new(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }

    #[test]
    fn test_direct_callees_whitespace_symbol_invalid() {
        let params = DirectCalleesParams {
            symbol: "   ".to_string(),
            path: ".".to_string(),
            max_results: 100,
            pagination: None,
        };
        assert!(params.validate().is_err());
    }
}