@softerist/heuristic-mcp 2.1.23 → 2.1.24

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.
@@ -41,25 +41,10 @@ function getConfigPaths() {
41
41
  });
42
42
  }
43
43
 
44
- // VS Code (MCP extension config in settings.json)
45
- if (platform === 'darwin') {
46
- paths.push({
47
- name: 'VS Code',
48
- path: path.join(home, 'Library', 'Application Support', 'Code', 'User', 'settings.json')
49
- });
50
- } else if (platform === 'win32') {
51
- paths.push({
52
- name: 'VS Code',
53
- path: path.join(process.env.APPDATA || '', 'Code', 'User', 'settings.json')
54
- });
55
- } else {
56
- paths.push({
57
- name: 'VS Code',
58
- path: path.join(home, '.config', 'Code', 'User', 'settings.json')
59
- });
60
- }
44
+ // Note: VS Code support is shown in --logs but NOT auto-registered
45
+ // because settings.json is a general config file that should not be auto-modified.
61
46
 
62
- // Cursor (uses similar structure to VS Code)
47
+ // Cursor (has MCP support, uses settings.json key)
63
48
  if (platform === 'darwin') {
64
49
  paths.push({
65
50
  name: 'Cursor',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softerist/heuristic-mcp",
3
- "version": "2.1.23",
3
+ "version": "2.1.24",
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",