fix(mcp): always register lsp server

This commit is contained in:
YeonGyu-Kim
2026-05-18 16:45:02 +09:00
parent bf96794599
commit ae278eb9f2
6 changed files with 149 additions and 39 deletions
+1 -4
View File
@@ -35,10 +35,7 @@ export function createBuiltinMcps(disabledMcps: string[] = [], config?: OhMyOpen
}
if (!disabledMcps.includes("lsp")) {
const lspConfig = createLspMcpConfig()
if (lspConfig) {
mcps.lsp = lspConfig
}
mcps.lsp = createLspMcpConfig()
}
return mcps