We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b12794f commit 2ed73f5Copy full SHA for 2ed73f5
1 file changed
packages/ai-native/src/browser/mcp/config/components/mcp-config.view.tsx
@@ -37,8 +37,10 @@ export const MCPConfigView: React.FC = () => {
37
isStarted: !!runningServer,
38
tools: runningServer?.tools,
39
};
40
- });
41
- allServers.unshift(builtinServer as any);
+ }) as MCPServer[];
+ if (builtinServer) {
42
+ allServers.unshift(builtinServer);
43
+ }
44
setServers(allServers);
45
}, [mcpServerProxyService]);
46
0 commit comments