We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 616ef0d commit ff2d932Copy full SHA for ff2d932
.github/workflows/cli_tests.yml
@@ -31,5 +31,8 @@ jobs:
31
- name: Build CLI
32
run: npm run build
33
34
+ - name: Explicitly pre-install test dependencies
35
+ run: npx -y @modelcontextprotocol/server-everything --help || true
36
+
37
- name: Run tests
38
run: npm test
cli/src/cli.ts
@@ -233,7 +233,7 @@ async function main(): Promise<void> {
233
const args = parseArgs();
234
235
if (args.cli) {
236
- runCli(args);
+ await runCli(args);
237
} else {
238
await runWebClient(args);
239
}
0 commit comments