@syke1/mcp-server 1.4.8 → 1.4.9

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.
@@ -839,6 +839,8 @@ function createWebServer(getGraphFn, initialFileCache, switchProjectFn, getProje
839
839
  }
840
840
  const normalized = path.normalize(projectRoot);
841
841
  // Free tier: only 1 project allowed — block switch to a different project
842
+ const licenseForLog = getLicenseStatus?.();
843
+ console.error(`[syke:switch] plan="${licenseForLog?.plan}" isProPlan=${isProPlan()}`);
842
844
  if (!isProPlan()) {
843
845
  const currentRoot = getProjectRoot ? path.normalize(getProjectRoot()) : null;
844
846
  if (currentRoot && normalized !== currentRoot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
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",