We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 051cda5 commit f5e3dd8Copy full SHA for f5e3dd8
client/sse.go
@@ -93,6 +93,9 @@ func (c *SSEMCPClient) Start(ctx context.Context) error {
93
req.Header.Set("Accept", "text/event-stream")
94
req.Header.Set("Cache-Control", "no-cache")
95
req.Header.Set("Connection", "keep-alive")
96
+ for k, v := range c.headers {
97
+ req.Header.Set(k, v)
98
+ }
99
100
resp, err := c.httpClient.Do(req)
101
if err != nil {
0 commit comments