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 fac7f5c commit 4afcf20Copy full SHA for 4afcf20
core/config/profile/doLoadConfig.ts
@@ -210,6 +210,13 @@ export default async function doLoadConfig(options: {
210
newConfig.mcpServerStatuses = serializableStatuses;
211
212
for (const server of mcpServerStatuses) {
213
+ server.errors.forEach((error) => {
214
+ // MCP errors will also show as config loading errors
215
+ errors.push({
216
+ fatal: false,
217
+ message: error,
218
+ });
219
220
if (server.status === "connected") {
221
const serverTools: Tool[] = server.tools.map((tool) => ({
222
displayTitle: server.name + " " + tool.name,
0 commit comments