@muhaven/mcp 0.1.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.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * `muhaven-broker` CLI subcommand router.
3
+ *
4
+ * Subcommands:
5
+ * (none) → run the daemon (production)
6
+ * login [flags] → device-code flow client; stores JWT in keystore
7
+ * logout → clear keystore JWT
8
+ * doctor → environment + keystore capability report
9
+ * --help, -h → usage
10
+ */
11
+ declare function runLogin(argv: readonly string[]): Promise<number>;
12
+ declare function runLogout(): Promise<number>;
13
+ declare function runDoctor(): Promise<number>;
14
+ declare function runCli(argv: readonly string[]): Promise<number>;
15
+
16
+ export { runCli, runDoctor, runLogin, runLogout };
@@ -0,0 +1,16 @@
1
+ /**
2
+ * `muhaven-broker` CLI subcommand router.
3
+ *
4
+ * Subcommands:
5
+ * (none) → run the daemon (production)
6
+ * login [flags] → device-code flow client; stores JWT in keystore
7
+ * logout → clear keystore JWT
8
+ * doctor → environment + keystore capability report
9
+ * --help, -h → usage
10
+ */
11
+ declare function runLogin(argv: readonly string[]): Promise<number>;
12
+ declare function runLogout(): Promise<number>;
13
+ declare function runDoctor(): Promise<number>;
14
+ declare function runCli(argv: readonly string[]): Promise<number>;
15
+
16
+ export { runCli, runDoctor, runLogin, runLogout };