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 cd1bcfb commit 87fad79Copy full SHA for 87fad79
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