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 c0e9899 commit 5868c6bCopy full SHA for 5868c6b
server/src/mcpProxy.ts
@@ -8,6 +8,8 @@ function onClientError(error: Error) {
8
function onServerError(error: Error) {
9
if (error?.cause && JSON.stringify(error.cause).includes("ECONNREFUSED")) {
10
console.error("Connection refused. Is the MCP server running?");
11
+ } else if (error.message && error.message.includes("404")) {
12
+ console.error("Error accessing endpoint (HTTP 404)");
13
} else {
14
console.error("Error from MCP server:", error);
15
}
0 commit comments