@syke1/mcp-server 1.3.3 → 1.3.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
@@ -24,6 +24,7 @@ Works with **Claude Code**, **Cursor**, **Windsurf**, and any MCP-compatible AI
24
24
  "args": ["@syke1/mcp-server@latest"],
25
25
  "env": {
26
26
  "SYKE_LICENSE_KEY": "your-key-here",
27
+ "SYKE_WEB_PORT": "3333",
27
28
  "GEMINI_KEY": "your-gemini-key",
28
29
  "OPENAI_KEY": "your-openai-key",
29
30
  "ANTHROPIC_KEY": "your-anthropic-key"
@@ -43,6 +44,7 @@ Works with **Claude Code**, **Cursor**, **Windsurf**, and any MCP-compatible AI
43
44
  "args": ["@syke1/mcp-server@latest"],
44
45
  "env": {
45
46
  "SYKE_LICENSE_KEY": "your-key-here",
47
+ "SYKE_WEB_PORT": "3333",
46
48
  "GEMINI_KEY": "your-gemini-key"
47
49
  }
48
50
  }
@@ -60,6 +62,7 @@ Works with **Claude Code**, **Cursor**, **Windsurf**, and any MCP-compatible AI
60
62
  "args": ["@syke1/mcp-server@latest"],
61
63
  "env": {
62
64
  "SYKE_LICENSE_KEY": "your-key-here",
65
+ "SYKE_WEB_PORT": "3333",
63
66
  "GEMINI_KEY": "your-gemini-key"
64
67
  }
65
68
  }
@@ -77,7 +80,7 @@ SYKE auto-detects your project language and builds the dependency graph on start
77
80
 
78
81
  ### 3. Open the dashboard
79
82
 
80
- A web dashboard opens automatically at `http://localhost:3333` showing your live dependency graph.
83
+ A web dashboard opens automatically at `http://localhost:3333` (configurable via `SYKE_WEB_PORT`) showing your live dependency graph.
81
84
 
82
85
  ## Features
83
86
 
@@ -113,7 +116,7 @@ Auto-detected, zero-config: **Dart/Flutter**, **TypeScript/JavaScript**, **Pytho
113
116
 
114
117
  ### Web Dashboard
115
118
 
116
- Live dependency graph visualization at `localhost:3333` with:
119
+ Live dependency graph visualization at `localhost:3333` (or your custom `SYKE_WEB_PORT`) with:
117
120
  - Interactive node graph (click any file to see its connections)
118
121
  - Real-time cascade monitoring
119
122
  - Risk level indicators
package/dist/index.js CHANGED
@@ -120,7 +120,7 @@ async function main() {
120
120
  };
121
121
  process.on("SIGINT", shutdown);
122
122
  process.on("SIGTERM", shutdown);
123
- const server = new index_js_1.Server({ name: "syke", version: "1.3.3" }, { capabilities: { tools: {} } });
123
+ const server = new index_js_1.Server({ name: "syke", version: "1.3.4" }, { capabilities: { tools: {} } });
124
124
  // List tools
125
125
  server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
126
126
  tools: [
@@ -475,7 +475,7 @@ async function main() {
475
475
  }
476
476
  });
477
477
  // Pre-warm the graph (skip if no project root — e.g. Smithery scan)
478
- console.error(`[syke] Starting SYKE MCP Server v1.3.3`);
478
+ console.error(`[syke] Starting SYKE MCP Server v1.3.4`);
479
479
  console.error(`[syke] License: ${licenseStatus.plan.toUpperCase()} (${licenseStatus.source})`);
480
480
  if (licenseStatus.expiresAt) {
481
481
  console.error(`[syke] Expires: ${licenseStatus.expiresAt}`);
@@ -570,7 +570,7 @@ main().catch((err) => {
570
570
  * See: https://smithery.ai/docs/deploy#sandbox-server
571
571
  */
572
572
  function createSandboxServer() {
573
- const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.3.3" }, { capabilities: { tools: {} } });
573
+ const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.3.4" }, { capabilities: { tools: {} } });
574
574
  sandboxServer.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
575
575
  tools: [
576
576
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.3.3",
3
+ "version": "1.3.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",
package/smithery.yaml CHANGED
@@ -25,6 +25,10 @@ startCommand:
25
25
  type: string
26
26
  default: ""
27
27
  description: Force a specific AI provider (gemini, openai, or anthropic). Auto-selects if empty.
28
+ webPort:
29
+ type: string
30
+ default: "3333"
31
+ description: Dashboard port (default 3333). Change if port is already in use.
28
32
  commandFunction:
29
33
  |-
30
- config => ({ command: 'npx', args: ['-y', '@syke1/mcp-server@latest'], env: { SYKE_LICENSE_KEY: config.licenseKey || '', GEMINI_KEY: config.geminiKey || '', OPENAI_KEY: config.openaiKey || '', ANTHROPIC_KEY: config.anthropicKey || '', SYKE_AI_PROVIDER: config.aiProvider || '', SYKE_NO_BROWSER: '1' } })
34
+ config => ({ command: 'npx', args: ['-y', '@syke1/mcp-server@latest'], env: { SYKE_LICENSE_KEY: config.licenseKey || '', SYKE_WEB_PORT: config.webPort || '3333', GEMINI_KEY: config.geminiKey || '', OPENAI_KEY: config.openaiKey || '', ANTHROPIC_KEY: config.anthropicKey || '', SYKE_AI_PROVIDER: config.aiProvider || '', SYKE_NO_BROWSER: '1' } })