File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed 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