fix: MCP proxy resilience — discovery cache, default liveness probes
Some checks failed
CI/CD / lint (push) Successful in 52s
CI/CD / typecheck (push) Successful in 1m51s
CI/CD / test (push) Successful in 1m1s
CI/CD / smoke (push) Failing after 3m21s
CI/CD / build (push) Successful in 4m9s
CI/CD / publish (push) Has been skipped

Adds a per-server tools/list cache in McpRouter (positive + negative TTL)
so a slow or dead upstream only stalls the first discovery call, not every
subsequent client request. Invalidated on upstream add/remove.

Health probes now apply a default liveness spec (tools/list via the real
production path) to any RUNNING instance without an explicit healthCheck,
so synthetic and real failures converge on the same signal.

Includes supporting updates in mcpd-client, discovery, upstream/mcpd,
seeder, and fulldeploy/release scripts.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Michal
2026-04-17 00:48:57 +01:00
parent c968d76e00
commit 3149ea3ae7
15 changed files with 499 additions and 32 deletions

View File

@@ -107,4 +107,38 @@ describe('McpdUpstream', () => {
const response = await upstream.send(request);
expect(response.error).toEqual({ code: -32601, message: 'Tool not found' });
});
it('routes */list methods through discoveryClient when provided', async () => {
const mainClient = mockMcpdClient();
const discoveryClient = mockMcpdClient(new Map([
['srv-1:tools/list', { result: { tools: [] } }],
['srv-1:resources/list', { result: { resources: [] } }],
['srv-1:prompts/list', { result: { prompts: [] } }],
]));
const upstream = new McpdUpstream('srv-1', 'slack', mainClient as any, undefined, discoveryClient as any);
await upstream.send({ jsonrpc: '2.0', id: '1', method: 'tools/list' });
await upstream.send({ jsonrpc: '2.0', id: '2', method: 'resources/list' });
await upstream.send({ jsonrpc: '2.0', id: '3', method: 'prompts/list' });
expect(discoveryClient.post).toHaveBeenCalledTimes(3);
expect(mainClient.post).not.toHaveBeenCalled();
});
it('routes tools/call through mainClient even when discoveryClient is set', async () => {
const mainClient = mockMcpdClient(new Map([
['srv-1:tools/call', { result: { ok: true } }],
]));
const discoveryClient = mockMcpdClient();
const upstream = new McpdUpstream('srv-1', 'slack', mainClient as any, undefined, discoveryClient as any);
await upstream.send({
jsonrpc: '2.0', id: '1', method: 'tools/call',
params: { name: 'noop', arguments: {} },
});
expect(mainClient.post).toHaveBeenCalledTimes(1);
expect(discoveryClient.post).not.toHaveBeenCalled();
});
});