@syke1/mcp-server 1.3.20 → 1.4.1
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/dist/index.js +3 -3
- package/dist/web/public/app.js +1064 -122
- package/dist/web/public/index.html +144 -4
- package/dist/web/public/style.css +812 -39
- package/dist/web/server.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -121,7 +121,7 @@ async function main() {
|
|
|
121
121
|
};
|
|
122
122
|
process.on("SIGINT", shutdown);
|
|
123
123
|
process.on("SIGTERM", shutdown);
|
|
124
|
-
const server = new index_js_1.Server({ name: "syke", version: "1.
|
|
124
|
+
const server = new index_js_1.Server({ name: "syke", version: "1.4.1" }, { capabilities: { tools: {} } });
|
|
125
125
|
// List tools
|
|
126
126
|
server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
|
|
127
127
|
tools: [
|
|
@@ -485,7 +485,7 @@ async function main() {
|
|
|
485
485
|
}
|
|
486
486
|
});
|
|
487
487
|
// Pre-warm the graph (skip if no project root — e.g. Smithery scan)
|
|
488
|
-
console.error(`[syke] Starting SYKE MCP Server v1.
|
|
488
|
+
console.error(`[syke] Starting SYKE MCP Server v1.4.1`);
|
|
489
489
|
console.error(`[syke] License: ${licenseStatus.plan.toUpperCase()} (${licenseStatus.source})`);
|
|
490
490
|
if (licenseStatus.expiresAt) {
|
|
491
491
|
console.error(`[syke] Expires: ${licenseStatus.expiresAt}`);
|
|
@@ -587,7 +587,7 @@ main().catch((err) => {
|
|
|
587
587
|
* See: https://smithery.ai/docs/deploy#sandbox-server
|
|
588
588
|
*/
|
|
589
589
|
function createSandboxServer() {
|
|
590
|
-
const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.
|
|
590
|
+
const sandboxServer = new index_js_1.Server({ name: "syke", version: "1.4.1" }, { capabilities: { tools: {} } });
|
|
591
591
|
sandboxServer.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
|
|
592
592
|
tools: [
|
|
593
593
|
{
|