We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4771d8f commit 7872b5fCopy full SHA for 7872b5f
src/mcp/connection.ts
@@ -654,7 +654,7 @@ export class MCPConnectionManager {
654
// Start health check every 30 seconds
655
this.healthCheckInterval = setInterval(async () => {
656
await this.performHealthCheck();
657
- }, 30000);
+ }, 10 * 60 * 1000); // 10 minutes
658
659
}
660
@@ -666,7 +666,7 @@ export class MCPConnectionManager {
666
667
try {
668
// Try to list tools as a health check - this is a lightweight operation
669
- await this.client.listTools();
+ await this.client.ping();
670
} catch (error) {
671
console.warn(`Health check failed for ${this.connection.name}:`, error);
672
await this.handleHealthCheckFailure(error);
0 commit comments