We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43b2e17 commit dbcec32Copy full SHA for dbcec32
1 file changed
packages/mcp-server/src/health-server.ts
@@ -18,6 +18,9 @@ export function startHealthServer(port = 3128) {
18
}
19
20
if (url.pathname === '/health' && req.method === 'GET') {
21
+ // Count health check requests as activity
22
+ totalRequests++;
23
+
24
const healthData = {
25
status: 'healthy',
26
timestamp: new Date().toISOString(),
0 commit comments