@syke1/mcp-server 1.3.18 → 1.3.20
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/dist/web/public/app.js +3 -3
- package/package.json +52 -52
package/dist/web/public/app.js
CHANGED
|
@@ -284,11 +284,11 @@ async function loadGraph() {
|
|
|
284
284
|
return isActive ? 4 : 6;
|
|
285
285
|
})
|
|
286
286
|
.linkDirectionalParticleWidth(link => {
|
|
287
|
-
if (highlightLinks.has(link)) return
|
|
287
|
+
if (highlightLinks.has(link)) return 4.5;
|
|
288
288
|
const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
|
|
289
289
|
return isActive ? 1.5 : 2.0;
|
|
290
290
|
})
|
|
291
|
-
.linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.
|
|
291
|
+
.linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.004 : 0.006)
|
|
292
292
|
.linkDirectionalParticleColor(link => {
|
|
293
293
|
if (highlightLinks.has(link)) return "#ffffff";
|
|
294
294
|
const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
|
|
@@ -2731,7 +2731,7 @@ async function updateBottomBar() {
|
|
|
2731
2731
|
const el = document.getElementById("bottom-info");
|
|
2732
2732
|
if (!el) return;
|
|
2733
2733
|
try {
|
|
2734
|
-
const r = await fetch("https://registry.npmjs.org/@syke1/mcp-server");
|
|
2734
|
+
const r = await fetch("https://registry.npmjs.org/@syke1/mcp-server", { cache: "no-store" });
|
|
2735
2735
|
const data = await r.json();
|
|
2736
2736
|
const version = data["dist-tags"]?.latest || "?";
|
|
2737
2737
|
const publishDate = data.time?.[version]?.slice(0, 10) || "?";
|
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@syke1/mcp-server",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"mcpName": "io.github.khalomsky/syke",
|
|
5
|
-
"description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"syke": "dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist/",
|
|
12
|
-
"README.md",
|
|
13
|
-
"smithery.yaml"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsc && node -e \"require('fs').cpSync('src/web/public','dist/web/public',{recursive:true})\"",
|
|
17
|
-
"start": "node dist/index.js"
|
|
18
|
-
},
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "https://github.com/khalomsky/syke.git"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"mcp",
|
|
25
|
-
"mcp-server",
|
|
26
|
-
"code-analysis",
|
|
27
|
-
"dependency-graph",
|
|
28
|
-
"ai",
|
|
29
|
-
"impact-analysis",
|
|
30
|
-
"build-gate",
|
|
31
|
-
"claude",
|
|
32
|
-
"cursor"
|
|
33
|
-
],
|
|
34
|
-
"author": "SYKE <hello@syke.cloud>",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"homepage": "https://syke.cloud",
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=18"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@google/generative-ai": "^0.24.1",
|
|
42
|
-
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
43
|
-
"dotenv": "^17.3.1",
|
|
44
|
-
"express": "^5.2.1",
|
|
45
|
-
"zod": "^3.24.2"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@types/express": "^5.0.6",
|
|
49
|
-
"@types/node": "^25.3.0",
|
|
50
|
-
"typescript": "^5.7.3"
|
|
51
|
-
}
|
|
52
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@syke1/mcp-server",
|
|
3
|
+
"version": "1.3.20",
|
|
4
|
+
"mcpName": "io.github.khalomsky/syke",
|
|
5
|
+
"description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"syke": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"README.md",
|
|
13
|
+
"smithery.yaml"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc && node -e \"require('fs').cpSync('src/web/public','dist/web/public',{recursive:true})\"",
|
|
17
|
+
"start": "node dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/khalomsky/syke.git"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"mcp",
|
|
25
|
+
"mcp-server",
|
|
26
|
+
"code-analysis",
|
|
27
|
+
"dependency-graph",
|
|
28
|
+
"ai",
|
|
29
|
+
"impact-analysis",
|
|
30
|
+
"build-gate",
|
|
31
|
+
"claude",
|
|
32
|
+
"cursor"
|
|
33
|
+
],
|
|
34
|
+
"author": "SYKE <hello@syke.cloud>",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"homepage": "https://syke.cloud",
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@google/generative-ai": "^0.24.1",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
43
|
+
"dotenv": "^17.3.1",
|
|
44
|
+
"express": "^5.2.1",
|
|
45
|
+
"zod": "^3.24.2"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/express": "^5.0.6",
|
|
49
|
+
"@types/node": "^25.3.0",
|
|
50
|
+
"typescript": "^5.7.3"
|
|
51
|
+
}
|
|
52
|
+
}
|