@softerist/heuristic-mcp 2.1.32 → 2.1.33
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/features/register.js +0 -13
- package/package.json +1 -1
package/features/register.js
CHANGED
|
@@ -4,19 +4,6 @@ import path from 'path';
|
|
|
4
4
|
import os from 'os';
|
|
5
5
|
import { fileURLToPath } from 'url';
|
|
6
6
|
|
|
7
|
-
// Helper to expand ~ and %vars%
|
|
8
|
-
function expandPath(p) {
|
|
9
|
-
if (p.startsWith('~/')) {
|
|
10
|
-
return path.join(os.homedir(), p.slice(2));
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
if (process.platform === 'win32') {
|
|
15
|
-
return p.replace(/%([^%]+)%/g, (_, n) => process.env[n] || '%' + n + '%');
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
return p;
|
|
19
|
-
}
|
|
20
7
|
|
|
21
8
|
// Detect which IDE is running the install
|
|
22
9
|
function detectCurrentIDE() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softerist/heuristic-mcp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.33",
|
|
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",
|