Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/mcp-v2/src/host-service-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function describeRelayFailure(
): string {
const trimmed = rawBody.slice(0, 200);
if (status === 503 && /host not connected/i.test(trimmed)) {
return `Host ${hostId} has not enabled remote access. Toggle "Allow remote workspaces to access this device" in Settings → Security on that machine.`;
return `Host ${hostId} relay tunnel is not connected.`;
}
if (status === 401) return "You are not authenticated";
if (status === 403) return `You don't have access to host ${hostId}`;
Expand Down
Loading