@syke1/mcp-server 1.3.20 → 1.4.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/dist/index.js +3 -3
- package/dist/web/public/app.js +1064 -122
- package/dist/web/public/index.html +144 -4
- package/dist/web/public/style.css +812 -39
- package/dist/web/server.js +1 -0
- package/package.json +1 -1
package/dist/web/server.js
CHANGED
|
@@ -746,6 +746,7 @@ function createWebServer(getGraphFn, initialFileCache, switchProjectFn, getProje
|
|
|
746
746
|
fileCount: graph.files.size,
|
|
747
747
|
edgeCount,
|
|
748
748
|
plan: license?.plan || "free",
|
|
749
|
+
planSource: license?.source || "default",
|
|
749
750
|
expiresAt: license?.expiresAt || null,
|
|
750
751
|
freeFileLimit: 50,
|
|
751
752
|
sykeVersion,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syke1/mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"mcpName": "io.github.khalomsky/syke",
|
|
5
5
|
"description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
|
|
6
6
|
"main": "dist/index.js",
|