fix(qa): use full tool profile for node MCP live proof (#125683)

* fix(gateway): share node tool snapshots across chunks

* docs(gateway): explain node snapshot ownership

* fix(qa): expose node MCP tool in live proof
This commit is contained in:
Dallin Romney
2026-08-18 22:08:25 +08:00
committed by GitHub
parent efaa867d93
commit e1d4eac8f4
@@ -195,7 +195,11 @@ describe.skipIf(!LIVE_ENABLED)("OpenAI cross-placement MCP model proof", () => {
defaults: { ...cfg.agents?.defaults, ...live.agents?.defaults },
entries: {
...cfg.agents?.entries,
qa: { ...cfg.agents?.entries?.qa, model: { primary: MODEL_REF } },
qa: {
...cfg.agents?.entries?.qa,
model: { primary: MODEL_REF },
tools: { ...cfg.agents?.entries?.qa?.tools, profile: "full" },
},
},
},
mcp: { servers: gatewayServers },