File tree 4 files changed +9
-10
lines changed
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @modelcontextprotocol/inspector-client" ,
3
- "version" : " 0.4.0 " ,
3
+ "version" : " 0.4.1 " ,
4
4
"description" : " Client-side application for the Model Context Protocol inspector" ,
5
5
"license" : " MIT" ,
6
6
"author" : " Anthropic, PBC (https://anthropic.com)" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @modelcontextprotocol/inspector" ,
3
- "version" : " 0.4.0 " ,
3
+ "version" : " 0.4.1 " ,
4
4
"description" : " Model Context Protocol inspector" ,
5
5
"license" : " MIT" ,
6
6
"author" : " Anthropic, PBC (https://anthropic.com)" ,
33
33
"publish-all" : " npm publish --workspaces --access public && npm publish --access public"
34
34
},
35
35
"dependencies" : {
36
- "@modelcontextprotocol/inspector-client" : " 0.3.0 " ,
37
- "@modelcontextprotocol/inspector-server" : " 0.3.0 " ,
36
+ "@modelcontextprotocol/inspector-client" : " 0.4.1 " ,
37
+ "@modelcontextprotocol/inspector-server" : " 0.4.1 " ,
38
38
"concurrently" : " ^9.0.1" ,
39
39
"shell-quote" : " ^1.8.2" ,
40
40
"spawn-rx" : " ^5.1.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @modelcontextprotocol/inspector-server" ,
3
- "version" : " 0.4.0 " ,
3
+ "version" : " 0.4.1 " ,
4
4
"description" : " Server-side application for the Model Context Protocol inspector" ,
5
5
"license" : " MIT" ,
6
6
"author" : " Anthropic, PBC (https://anthropic.com)" ,
Original file line number Diff line number Diff line change @@ -184,14 +184,13 @@ const PORT = process.env.PORT || 3000;
184
184
185
185
try {
186
186
const server = app . listen ( PORT ) ;
187
-
188
- server . on ( ' listening' , ( ) => {
187
+
188
+ server . on ( " listening" , ( ) => {
189
189
const addr = server . address ( ) ;
190
- const port = typeof addr === ' string' ? addr : addr ?. port ;
190
+ const port = typeof addr === " string" ? addr : addr ?. port ;
191
191
console . log ( `Proxy server listening on port ${ port } ` ) ;
192
192
} ) ;
193
-
194
193
} catch ( error ) {
195
- console . error ( ' Failed to start server:' , error ) ;
194
+ console . error ( " Failed to start server:" , error ) ;
196
195
process . exit ( 1 ) ;
197
196
}
You can’t perform that action at this time.
0 commit comments