@syke1/mcp-server 1.4.14 → 1.4.15

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/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -124,7 +124,7 @@ async function main() {
124
124
  };
125
125
  process.on("SIGINT", shutdown);
126
126
  process.on("SIGTERM", shutdown);
127
- const server = new index_js_1.Server({ name: "syke", version: "1.4.2" }, { capabilities: { tools: {} } });
127
+ const server = new index_js_1.Server({ name: "syke", version: "1.4.15" }, { capabilities: { tools: {} } });
128
128
  // List tools
129
129
  server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
130
130
  tools: [
@@ -488,7 +488,7 @@ async function main() {
488
488
  }
489
489
  });
490
490
  // Pre-warm the graph (skip if no project root — e.g. Smithery scan)
491
- console.error(`[syke] Starting SYKE MCP Server v1.4.1`);
491
+ console.error(`[syke] Starting SYKE MCP Server v1.4.15`);
492
492
  console.error(`[syke] License: ${licenseStatus.plan.toUpperCase()} (${licenseStatus.source})`);
493
493
  if (licenseStatus.expiresAt) {
494
494
  console.error(`[syke] Expires: ${licenseStatus.expiresAt}`);
@@ -660,7 +660,7 @@ main().catch((err) => {
660
660
  * See: https://smithery.ai/docs/deploy#sandbox-server
661
661
  */
662
662
  function createSandboxServer() {
663
- const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.4.2" }, { capabilities: { tools: {} } });
663
+ const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.4.15" }, { capabilities: { tools: {} } });
664
664
  sandboxServer.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
665
665
  tools: [
666
666
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.4.14",
3
+ "version": "1.4.15",
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",