@algosuite/vo-mcp 0.1.0 → 0.2.0-beta.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/bin/vo-mcp +2 -5
- package/dist/cli.js +1087 -319
- package/dist/cli.js.map +4 -4
- package/dist/index.js +1083 -92
- package/dist/index.js.map +4 -4
- package/dist/install-cli.js +12 -7
- package/dist/install-cli.js.map +2 -2
- package/dist/login-cli.js +9 -5
- package/dist/login-cli.js.map +2 -2
- package/dist/runner-cli.js +1940 -0
- package/dist/runner-cli.js.map +7 -0
- package/package.json +1 -1
package/bin/vo-mcp
CHANGED
|
@@ -24,11 +24,8 @@ if (command === 'install') {
|
|
|
24
24
|
} else if (subcommand === '--uninstall-autostart') {
|
|
25
25
|
import('../dist/autostart-cli.js').then((m) => m.uninstallAutostartCli());
|
|
26
26
|
} else {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
console.error('');
|
|
30
|
-
console.error('To set up auto-start at login: vo-mcp runner --install-autostart');
|
|
31
|
-
process.exit(1);
|
|
27
|
+
// Bring-your-own runner daemon (bundled by scripts/bundle.mjs into dist/).
|
|
28
|
+
import('../dist/runner-cli.js');
|
|
32
29
|
}
|
|
33
30
|
} else {
|
|
34
31
|
// Default: MCP stdio server
|