@softerist/heuristic-mcp 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.jsonc +6 -17
- package/package.json +1 -1
package/config.jsonc
CHANGED
|
@@ -628,7 +628,7 @@
|
|
|
628
628
|
"**/.smart-coding-cache/**",
|
|
629
629
|
],
|
|
630
630
|
// Indexing controls.
|
|
631
|
-
"indexing": {
|
|
631
|
+
"indexing": {
|
|
632
632
|
// Enable project-type detection + smart ignore patterns.
|
|
633
633
|
"smartIndexing": true,
|
|
634
634
|
// Lines per chunk.
|
|
@@ -645,18 +645,10 @@
|
|
|
645
645
|
"watchFiles": true,
|
|
646
646
|
// Save incremental index checkpoints every 2s so interrupted runs can resume with minimal rework.
|
|
647
647
|
// Increase to 5000-10000 on slower disks if checkpoint writes feel too frequent.
|
|
648
|
-
"indexCheckpointIntervalMs": 2000,
|
|
649
|
-
},
|
|
650
|
-
//
|
|
651
|
-
|
|
652
|
-
// This helps prevent stale workspace binding after IDE reloads/window switches.
|
|
653
|
-
"autoStopOtherServersOnStartup": true,
|
|
654
|
-
// Safety guard for IDE sessions:
|
|
655
|
-
// when true, semantic/index tools require a current trusted workspace signal
|
|
656
|
-
// (MCP roots or explicit workspace env), otherwise the call fails fast.
|
|
657
|
-
"requireTrustedWorkspaceSignalForTools": true,
|
|
658
|
-
// Logging and diagnostics.
|
|
659
|
-
"logging": {
|
|
648
|
+
"indexCheckpointIntervalMs": 2000,
|
|
649
|
+
},
|
|
650
|
+
// Logging and diagnostics.
|
|
651
|
+
"logging": {
|
|
660
652
|
// Enable verbose logging.
|
|
661
653
|
"verbose": true,
|
|
662
654
|
},
|
|
@@ -694,10 +686,7 @@
|
|
|
694
686
|
"worker": {
|
|
695
687
|
// Number of embedding workers (0 disables).
|
|
696
688
|
// Windows + heavy Jina models are more stable with child-process embedding than worker pools.
|
|
697
|
-
"workerThreads":
|
|
698
|
-
// Safety guard for heavy models on Windows.
|
|
699
|
-
// Keep true (recommended). Set false only to opt in to experimental heavy-model workers on Windows.
|
|
700
|
-
"workerDisableHeavyModelOnWindows": false,
|
|
689
|
+
"workerThreads": 0,
|
|
701
690
|
// Worker batch timeout in milliseconds.
|
|
702
691
|
"workerBatchTimeoutMs": 120000,
|
|
703
692
|
// Failures before worker circuit opens.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softerist/heuristic-mcp",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "An enhanced MCP server providing intelligent semantic code search with find-similar-code, recency ranking, and improved chunking. Fork of smart-coding-mcp.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|