-
Notifications
You must be signed in to change notification settings - Fork 296
Closed
Labels
Description
Objective
Replace DisableStandaloneSSE: true with DisableListening: true in the HTTP MCP inspector's StreamableClientTransport to more precisely express the inspector's intent.
Context
From discussion #18080 (go-sdk module review): The MCP inspector connects, queries capabilities, and exits — it never needs server-pushed messages. The DisableListening field added in go-sdk v1.3.0 better expresses this intent than DisableStandaloneSSE.
File to Modify
pkg/cli/mcp_inspect_mcp.go — around line 242
Change Required
// Before
transport := &mcp.StreamableClientTransport{
Endpoint: config.URL,
DisableStandaloneSSE: true,
}
// After
transport := &mcp.StreamableClientTransport{
Endpoint: config.URL,
DisableListening: true,
}Acceptance Criteria
-
DisableStandaloneSSEreplaced withDisableListeninginmcp_inspect_mcp.go -
make test-unitpasses -
make agent-finishpasses
Generated by Plan Command for issue #discussion #18080
- expires on Feb 27, 2026, 12:38 PM UTC
Reactions are currently unavailable