File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 19
19
" mcp"
20
20
],
21
21
"exports" : {
22
+ "." : {
23
+ "import" : " ./dist/esm/index.js" ,
24
+ "require" : " ./dist/cjs/index.js"
25
+ },
26
+ "./client" : {
27
+ "import" : " ./dist/esm/client/index.js" ,
28
+ "require" : " ./dist/cjs/client/index.js"
29
+ },
30
+ "./server" : {
31
+ "import" : " ./dist/esm/server/index.js" ,
32
+ "require" : " ./dist/cjs/server/index.js"
33
+ },
22
34
"./*" : {
23
35
"import" : " ./dist/esm/*" ,
24
36
"require" : " ./dist/cjs/*"
88
100
"resolutions" : {
89
101
"strip-ansi" : " 6.0.1"
90
102
}
91
- }
103
+ }
Original file line number Diff line number Diff line change @@ -270,7 +270,9 @@ class InteractiveOAuthClient {
270
270
}
271
271
272
272
if ( command === 'quit' ) {
273
- break ;
273
+ console . log ( '\n👋 Goodbye!' ) ;
274
+ this . close ( ) ;
275
+ process . exit ( 0 ) ;
274
276
} else if ( command === 'list' ) {
275
277
await this . listTools ( ) ;
276
278
} else if ( command . startsWith ( 'call ' ) ) {
You can’t perform that action at this time.
0 commit comments