@syke1/mcp-server 1.8.2 → 1.8.3
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 +20 -8
- package/dist/index.js +4 -4
- package/package.json +1 -1
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
|
-
###
|
|
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,31 @@ You (developer) AI Agent SYKE
|
|
|
251
252
|
| build." ----------| |
|
|
252
253
|
```
|
|
253
254
|
|
|
254
|
-
##
|
|
255
|
+
## Pricing
|
|
255
256
|
|
|
256
|
-
|
|
257
|
+
| | Free | Pro | Cortex |
|
|
258
|
+
|---|------|-----|--------|
|
|
259
|
+
| **Price** | $0 forever | $9/mo | $29/mo |
|
|
260
|
+
| **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) |
|
|
262
|
+
| **Projects** | 1 | Unlimited | Unlimited |
|
|
263
|
+
| **AI Analysis** | — | — | Gemini / OpenAI / Claude (BYOK) |
|
|
264
|
+
|
|
265
|
+
Annual plans: Pro $89/year, Cortex $249/year.
|
|
266
|
+
|
|
267
|
+
## Founding 20 — Free Pro for Early Adopters
|
|
268
|
+
|
|
269
|
+
We're giving the **first 20 developers** full Pro access for **30 days** — no credit card, no strings.
|
|
257
270
|
|
|
258
271
|
**What you get:**
|
|
259
|
-
- All
|
|
272
|
+
- All Pro tools with advanced algorithms (SCC, PageRank, Risk Scoring, Git Coupling)
|
|
260
273
|
- Unlimited files, multi-project support
|
|
261
274
|
- Real-time cascade monitoring + web dashboard
|
|
262
|
-
- AI semantic analysis (BYOK — Gemini, OpenAI, or Claude)
|
|
263
275
|
|
|
264
276
|
**How to claim:**
|
|
265
277
|
1. Sign up at [syke.cloud](https://syke.cloud)
|
|
266
|
-
2. Star this repo
|
|
267
|
-
3.
|
|
278
|
+
2. Star this repo on GitHub
|
|
279
|
+
3. Verify with GitHub OAuth in your [dashboard](https://syke.cloud/dashboard/) → 30 days Pro unlocked
|
|
268
280
|
|
|
269
281
|
Spots are limited. Once they're gone, they're gone.
|
|
270
282
|
|
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.
|
|
150
|
+
const server = new index_js_1.Server({ name: "syke", version: "1.8.3" }, { 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.
|
|
631
|
+
console.error(`[syke] Starting SYKE MCP Server v1.8.3`);
|
|
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.
|
|
659
|
+
if (latest && latest !== "1.8.3") {
|
|
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.
|
|
819
|
+
const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.8.3" }, { 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
|
+
"version": "1.8.3",
|
|
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",
|