Skip to content

Commit 780e94e

Browse files
authored
Merge branch 'main' into feat/custom-context-support
2 parents 4d31dc8 + 4d0977b commit 780e94e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/sdk",
3-
"version": "1.17.1",
3+
"version": "1.17.2",
44
"description": "Model Context Protocol implementation for TypeScript",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

src/examples/client/simpleOAuthClient.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@ class InteractiveOAuthClient {
270270
}
271271

272272
if (command === 'quit') {
273-
break;
273+
console.log('\n👋 Goodbye!');
274+
this.close();
275+
process.exit(0);
274276
} else if (command === 'list') {
275277
await this.listTools();
276278
} else if (command.startsWith('call ')) {

0 commit comments

Comments
 (0)