You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If MCP Hub is already initialized, update the webview with current server list
618
+
if(this.mcpHub){
619
+
this.postMessageToWebview({
620
+
type: "mcpServers",
621
+
mcpServers: this.mcpHub.getServers(),
622
+
})
623
+
}
624
+
604
625
// gui relies on model info to be up-to-date to provide the most accurate pricing, so we need to fetch the latest details on launch.
605
626
// we do this for all users since many users switch between api providers and if they were to switch back to openrouter it would be showing outdated model info if we hadn't retrieved the latest at this point
606
627
// (see normalizeApiConfiguration > openrouter)
@@ -2103,6 +2124,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
0 commit comments