10 lines
357 B
JavaScript
10 lines
357 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const server_1 = require("./server");
|
|
// This is the main entry point for the MCP Skill.
|
|
// When Claude Code starts this skill, it will call the `run` function.
|
|
(0, server_1.run)().catch(error => {
|
|
console.error("Failed to start MCP Server:", error);
|
|
process.exit(1);
|
|
});
|