@syke1/mcp-server 1.8.2 → 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
@@ -87,7 +87,7 @@ SYKE auto-detects your project language and builds the dependency graph on start
87
87
 
88
88
  ## Features
89
89
 
90
- ### 8 MCP Tools
90
+ ### 9 MCP Tools
91
91
 
92
92
  | Tool | Tier | Description |
93
93
  |------|------|-------------|
@@ -97,8 +97,9 @@ SYKE auto-detects your project language and builds the dependency graph on start
97
97
  | `analyze_impact` | **Pro** | Full impact analysis with SCC, risk scoring, and git coupling. |
98
98
  | `get_hub_files` | **Pro** | Ranks files by PageRank importance score. |
99
99
  | `refresh_graph` | **Pro** | Re-scans all source files and rebuilds the dependency graph. |
100
- | `ai_analyze` | **Pro** | AI semantic analysis (Gemini/OpenAI/Claude) of a file and its dependents. |
101
100
  | `check_warnings` | **Pro** | Real-time monitoring alerts for file changes that may break dependents. |
101
+ | `ai_analyze` | **Cortex** | AI semantic analysis (Gemini/OpenAI/Claude) of a file and its dependents. |
102
+ | `scan_project` | **Cortex** | AI-powered full-project scan — generates a comprehensive onboarding document covering architecture, key files, and patterns. |
102
103
 
103
104
  ### Multi-AI Provider Support
104
105
 
@@ -251,20 +252,32 @@ You (developer) AI Agent SYKE
251
252
  | build." ----------| |
252
253
  ```
253
254
 
254
- ## Founding 100 — Free Pro for Early Adopters
255
+ ## Pricing
255
256
 
256
- We're giving the **first 100 developers** full Pro access for **30 days** — no credit card, no strings.
257
+ | | Free | Pro | Cortex |
258
+ |---|------|-----|--------|
259
+ | **Files** | 200 | Unlimited | Unlimited |
260
+ | **Tools** | 3 core | 7 (+ advanced algorithms) | 9 (+ AI analysis) |
261
+ | **Projects** | 1 | Unlimited | Unlimited |
262
+ | **AI Analysis** | — | — | Gemini / OpenAI / Claude (BYOK) |
263
+
264
+ **[See current pricing →](https://syke.cloud/#pricing)**
265
+
266
+ Annual plans available. 14-day money-back guarantee.
267
+
268
+ ## Founding 20 — Free Pro for Early Adopters
269
+
270
+ We're giving the **first 20 developers** full Pro access for **30 days** — no credit card, no strings.
257
271
 
258
272
  **What you get:**
259
- - All 8 MCP tools with advanced algorithms (SCC, PageRank, Risk Scoring, Git Coupling)
273
+ - All Pro tools with advanced algorithms (SCC, PageRank, Risk Scoring, Git Coupling)
260
274
  - Unlimited files, multi-project support
261
275
  - Real-time cascade monitoring + web dashboard
262
- - AI semantic analysis (BYOK — Gemini, OpenAI, or Claude)
263
276
 
264
277
  **How to claim:**
265
278
  1. Sign up at [syke.cloud](https://syke.cloud)
266
- 2. Star this repo
267
- 3. Click "I Starred" in your [dashboard](https://syke.cloud/dashboard/) → 30 days Pro unlocked
279
+ 2. Star this repo on GitHub
280
+ 3. Verify with GitHub OAuth in your [dashboard](https://syke.cloud/dashboard/) → 30 days Pro unlocked
268
281
 
269
282
  Spots are limited. Once they're gone, they're gone.
270
283
 
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.2" }, { 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.2`);
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.2") {
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.2" }, { 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.2",
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",