@syke1/mcp-server 1.8.3 → 1.8.4

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/README.md CHANGED
@@ -256,13 +256,14 @@ You (developer) AI Agent SYKE
256
256
 
257
257
  | | Free | Pro | Cortex |
258
258
  |---|------|-----|--------|
259
- | **Price** | $0 forever | $9/mo | $29/mo |
260
259
  | **Files** | 200 | Unlimited | Unlimited |
261
- | **Tools** | 3 (gate_build, check_safe, get_dependencies) | 7 (+ analyze_impact, hub_files, refresh, warnings) | 9 (+ ai_analyze, scan_project) |
260
+ | **Tools** | 3 core | 7 (+ advanced algorithms) | 9 (+ AI analysis) |
262
261
  | **Projects** | 1 | Unlimited | Unlimited |
263
262
  | **AI Analysis** | — | — | Gemini / OpenAI / Claude (BYOK) |
264
263
 
265
- Annual plans: Pro $89/year, Cortex $249/year.
264
+ **[See current pricing →](https://syke.cloud/#pricing)**
265
+
266
+ Annual plans available. 14-day money-back guarantee.
266
267
 
267
268
  ## Founding 20 — Free Pro for Early Adopters
268
269
 
package/dist/index.js CHANGED
@@ -147,7 +147,7 @@ async function main() {
147
147
  };
148
148
  process.on("SIGINT", shutdown);
149
149
  process.on("SIGTERM", shutdown);
150
- const server = new index_js_1.Server({ name: "syke", version: "1.8.3" }, { capabilities: { tools: {} } });
150
+ const server = new index_js_1.Server({ name: "syke", version: "1.8.4" }, { capabilities: { tools: {} } });
151
151
  // List tools
152
152
  server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
153
153
  tools: [
@@ -628,7 +628,7 @@ async function main() {
628
628
  }
629
629
  });
630
630
  // Pre-warm the graph (skip if no project root — e.g. Smithery scan)
631
- console.error(`[syke] Starting SYKE MCP Server v1.8.3`);
631
+ console.error(`[syke] Starting SYKE MCP Server v1.8.4`);
632
632
  console.error(`[syke] License: ${licenseStatus.plan.toUpperCase()} (${licenseStatus.source})`);
633
633
  if (licenseStatus.expiresAt) {
634
634
  console.error(`[syke] Expires: ${licenseStatus.expiresAt}`);
@@ -656,7 +656,7 @@ async function main() {
656
656
  });
657
657
  const data = await res.json();
658
658
  const latest = data["dist-tags"]?.latest;
659
- if (latest && latest !== "1.8.3") {
659
+ if (latest && latest !== "1.8.4") {
660
660
  const [lM, lm, lp] = latest.split(".").map(Number);
661
661
  const [cM, cm, cp] = [1, 8, 1];
662
662
  if (lM > cM || (lM === cM && lm > cm) || (lM === cM && lm === cm && lp > cp)) {
@@ -816,7 +816,7 @@ main().catch((err) => {
816
816
  * See: https://smithery.ai/docs/deploy#sandbox-server
817
817
  */
818
818
  function createSandboxServer() {
819
- const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.8.3" }, { capabilities: { tools: {} } });
819
+ const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.8.4" }, { capabilities: { tools: {} } });
820
820
  sandboxServer.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
821
821
  tools: [
822
822
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
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",