We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a57e707 + 3e41520 commit fe9ab40Copy full SHA for fe9ab40
1 file changed
client/src/App.tsx
@@ -575,11 +575,24 @@ const App = () => {
575
{!serverCapabilities?.resources &&
576
!serverCapabilities?.prompts &&
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>
+ <>
+ <div className="flex items-center justify-center p-4">
+ <p className="text-lg text-gray-500">
+ The connected server does not support any MCP
+ 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
+ </>
596
) : (
597
<>
598
<ResourcesTab
0 commit comments