Commit e5f9e1d
authored
fix: use server-issued session ID for HTTP backend tools/list (#1559)
## Problem
HTTP backends that implement the Streamable HTTP MCP transport (spec
2025-03-26) issue a specific `Mcp-Session-Id` during `initialize` and
require that exact session ID on all subsequent requests. When
`tools/list` arrived with a different session ID, they returned **HTTP
400**, causing the gateway to register zero tools for the backend — even
though the health check reported the server as `running`.
Root cause: `registerToolsFromBackend` injected a fabricated
`"gateway-init-{serverID}"` session ID into the request context. In
`sendHTTPRequest`, the context session ID has higher priority than
`conn.httpSessionID` (the real session ID captured from
`initializeHTTPSession()`), so the server-issued ID was silently
overridden on every startup-time `tools/list` call.
Reported in: github/gh-aw#18712 (Datadog MCP
server affected)
## Fix
Remove the fabricated context session ID from `registerToolsFromBackend`
and pass `context.Background()` directly. `sendHTTPRequest` already
falls back to `conn.httpSessionID` when no context session ID is
present, so it now correctly uses the server-issued session ID.
```go
// Before
ctx := context.WithValue(context.Background(), SessionIDContextKey, fmt.Sprintf("gateway-init-%s", serverID))
result, err := conn.SendRequestWithServerID(ctx, "tools/list", nil, serverID)
// After
result, err := conn.SendRequestWithServerID(context.Background(), "tools/list", nil, serverID)
```
## Tests
`TestHTTPBackendInitialization` is rewritten as a regression test for
this exact scenario:
- Mock server issues a specific `Mcp-Session-Id` during `initialize`
- Mock server rejects `tools/list` with HTTP 400 if the session ID
doesn't match
- Test asserts the gateway uses the server-issued session ID (not a
fabricated one)
All existing tests continue to pass.2 files changed
+51
-57
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
275 | 275 | | |
276 | 276 | | |
277 | 277 | | |
278 | | - | |
279 | | - | |
280 | | - | |
281 | | - | |
282 | 278 | | |
283 | | - | |
| 279 | + | |
284 | 280 | | |
285 | 281 | | |
286 | 282 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
19 | 23 | | |
20 | | - | |
21 | | - | |
22 | | - | |
| 24 | + | |
| 25 | + | |
23 | 26 | | |
24 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
25 | 30 | | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | 31 | | |
30 | 32 | | |
31 | 33 | | |
32 | 34 | | |
33 | | - | |
34 | 35 | | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
39 | 42 | | |
40 | | - | |
41 | | - | |
42 | | - | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
43 | 48 | | |
44 | | - | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
45 | 61 | | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
62 | 69 | | |
63 | 70 | | |
64 | | - | |
| 71 | + | |
65 | 72 | | |
66 | | - | |
67 | | - | |
68 | 73 | | |
69 | 74 | | |
70 | 75 | | |
71 | | - | |
| 76 | + | |
72 | 77 | | |
73 | 78 | | |
74 | 79 | | |
75 | 80 | | |
76 | 81 | | |
77 | | - | |
| 82 | + | |
78 | 83 | | |
79 | 84 | | |
80 | 85 | | |
81 | 86 | | |
82 | | - | |
| 87 | + | |
83 | 88 | | |
84 | 89 | | |
85 | | - | |
| 90 | + | |
86 | 91 | | |
87 | 92 | | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
99 | 97 | | |
100 | | - | |
| 98 | + | |
101 | 99 | | |
102 | 100 | | |
103 | 101 | | |
| |||
0 commit comments