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 8e713ae commit 1d8779dCopy full SHA for 1d8779d
client/src/lib/hooks/useConnection.ts
@@ -296,7 +296,7 @@ export function useConnection({
296
const token = bearerToken || (await authProvider.tokens())?.access_token;
297
if (token) {
298
const authHeaderName = headerName || "Authorization";
299
- headers[authHeaderName] = `${token}`;
+ headers[authHeaderName] = `Bearer ${token}`;
300
}
301
302
const clientTransport = new SSEClientTransport(mcpProxyServerUrl, {
0 commit comments