File tree Expand file tree Collapse file tree 6 files changed +2635
-391
lines changed Expand file tree Collapse file tree 6 files changed +2635
-391
lines changed Original file line number Diff line number Diff line change 21
21
},
22
22
"devDependencies" : {},
23
23
"dependencies" : {
24
- "@modelcontextprotocol/sdk" : " ^1.10.2 " ,
24
+ "@modelcontextprotocol/sdk" : " ^1.11.0 " ,
25
25
"commander" : " ^13.1.0" ,
26
26
"spawn-rx" : " ^5.1.2"
27
27
}
Original file line number Diff line number Diff line change 23
23
"test:watch" : " jest --config jest.config.cjs --watch"
24
24
},
25
25
"dependencies" : {
26
- "@modelcontextprotocol/sdk" : " ^1.10.2 " ,
26
+ "@modelcontextprotocol/sdk" : " ^1.11.0 " ,
27
27
"@radix-ui/react-checkbox" : " ^1.1.4" ,
28
28
"@radix-ui/react-dialog" : " ^1.1.3" ,
29
29
"@radix-ui/react-icons" : " ^1.3.0" ,
Original file line number Diff line number Diff line change @@ -575,11 +575,24 @@ const App = () => {
575
575
{ ! serverCapabilities ?. resources &&
576
576
! serverCapabilities ?. prompts &&
577
577
! serverCapabilities ?. tools ? (
578
- < div className = "flex items-center justify-center p-4" >
579
- < p className = "text-lg text-gray-500" >
580
- The connected server does not support any MCP capabilities
581
- </ p >
582
- </ div >
578
+ < >
579
+ < div className = "flex items-center justify-center p-4" >
580
+ < p className = "text-lg text-gray-500" >
581
+ The connected server does not support any MCP
582
+ capabilities
583
+ </ p >
584
+ </ div >
585
+ < PingTab
586
+ onPingClick = { ( ) => {
587
+ void sendMCPRequest (
588
+ {
589
+ method : "ping" as const ,
590
+ } ,
591
+ EmptyResultSchema ,
592
+ ) ;
593
+ } }
594
+ />
595
+ </ >
583
596
) : (
584
597
< >
585
598
< ResourcesTab
You can’t perform that action at this time.
0 commit comments