@syke1/mcp-server 1.4.4 → 1.4.5
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -76,7 +76,7 @@ let licenseStatus = { plan: "free", source: "default" };
|
|
|
76
76
|
// Free tier limits
|
|
77
77
|
const FREE_MAX_FILES = 50;
|
|
78
78
|
function isPro() {
|
|
79
|
-
return
|
|
79
|
+
return licenseStatus.plan === "pro" || licenseStatus.plan === "pro_trial";
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* Check if a resolved file path is within the free tier limit.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syke1/mcp-server",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
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",
|