sysprom 1.9.2 → 1.10.0
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/src/cli/program.js +6 -0
- package/package.json +1 -1
package/dist/src/cli/program.js
CHANGED
|
@@ -46,3 +46,9 @@ export const commands = [
|
|
|
46
46
|
for (const cmd of commands) {
|
|
47
47
|
buildCommander(cmd, program);
|
|
48
48
|
}
|
|
49
|
+
program
|
|
50
|
+
.command("mcp")
|
|
51
|
+
.description("Start the SysProM MCP server (stdio transport)")
|
|
52
|
+
.action(async () => {
|
|
53
|
+
await import("../mcp/server.js");
|
|
54
|
+
});
|