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
"Could not find a reason. This might be a bug in the MCP Server. Please open an issue in https://github.com/mongodb-js/mongodb-mcp-server.",
51
+
};
52
+
}
47
53
case"disconnect":
48
54
case"close":
49
55
return{tag: "disconnected"};
@@ -59,6 +65,11 @@ export class DebugResource extends ReactiveResource<
59
65
break;
60
66
case"errored":
61
67
result+=`The user is not connected to a MongoDB cluster because of an error.\n`;
68
+
if(this.current.connectedAtlasCluster){
69
+
result+=`Attempted connecting to Atlas Cluster "${this.current.connectedAtlasCluster.clusterName}" in project with id "${this.current.connectedAtlasCluster.projectId}".\n`;
70
+
}
71
+
72
+
result+=`The inferred authentication mechanism is "${this.current.connectionStringAuthType??"could-not-infer"}".\n`;
0 commit comments