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 992218b commit fedc1cfCopy full SHA for fedc1cf
src/lm/MCPServer.ts
@@ -58,7 +58,11 @@ export class MCPServer implements vscode.Disposable {
58
vscode.window.showInformationMessage(`TLA+ MCP server listening at http://localhost:${port}/mcp`);
59
console.log(`TLA+ MCP server listening at http://localhost:${port}/mcp`);
60
}).on('error', (err) => {
61
- vscode.window.showErrorMessage(`Failed to start TLA+ MCP server: ${err instanceof Error ? err.message : String(err)}`);
+ vscode.window.showErrorMessage(
62
+ `Failed to start TLA+ MCP server: ${
63
+ err instanceof Error ? err.message : String(err)
64
+ }`
65
+ );
66
console.error('Error starting TLA+ MCP server:', err);
67
});
68
0 commit comments