@syke1/mcp-server 1.1.6 → 1.1.8

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.
Files changed (2) hide show
  1. package/package.json +4 -3
  2. package/smithery.yaml +18 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "files": [
10
10
  "dist/",
11
- "README.md"
11
+ "README.md",
12
+ "smithery.yaml"
12
13
  ],
13
14
  "scripts": {
14
15
  "build": "tsc && node -e \"require('fs').cpSync('src/web/public','dist/web/public',{recursive:true})\"",
@@ -16,7 +17,7 @@
16
17
  },
17
18
  "repository": {
18
19
  "type": "git",
19
- "url": "https://syke.cloud"
20
+ "url": "https://github.com/khalomsky/syke.git"
20
21
  },
21
22
  "keywords": [
22
23
  "mcp",
package/smithery.yaml ADDED
@@ -0,0 +1,18 @@
1
+ # Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
2
+
3
+ startCommand:
4
+ type: stdio
5
+ configSchema:
6
+ type: object
7
+ properties:
8
+ licenseKey:
9
+ type: string
10
+ default: ""
11
+ description: Your SYKE Pro license key (optional — Free tier works without it). Get one at https://syke.cloud/dashboard
12
+ geminiKey:
13
+ type: string
14
+ default: ""
15
+ description: Google Gemini API key for AI semantic analysis (Pro only, optional)
16
+ commandFunction:
17
+ |-
18
+ config => ({ command: 'npx', args: ['-y', '@syke1/mcp-server@latest'], env: { SYKE_LICENSE_KEY: config.licenseKey || '', GEMINI_KEY: config.geminiKey || '', SYKE_NO_BROWSER: '1' } })