Merge pull request #4194 from MoerAI/fix/lsp-windows-cli-path-separator

fix(mcp): normalize path separators in LSP/ast-grep cli candidate detection (fixes #4151)
This commit is contained in:
YeonGyu-Kim
2026-05-21 11:44:28 +09:00
committed by GitHub
5 changed files with 78 additions and 7 deletions
+5 -3
View File
@@ -1,6 +1,7 @@
import { existsSync } from "node:fs";
import { dirname, resolve } from "node:path";
import { fileURLToPath } from "node:url";
import { hasCliSuffix } from "./cli-suffix";
import type { LocalMcpConfig } from "./lsp";
import { resolveRuntimeExecutable, type RuntimeExecutable, type RuntimeExecutableResolver } from "./runtime-executable";
@@ -96,11 +97,12 @@ function resolveAstGrepCommand(options: AstGrepMcpConfigOptions = {}): CommandCa
const moduleDirectory = getModuleDirectory(options.moduleUrl ?? import.meta.url);
if (moduleDirectory) addAncestorCommandCandidates(moduleDirectory, candidates, seenPaths, pathExists, resolveExecutable);
const distCandidate = candidates.find((candidate) => candidate.path.endsWith(DIST_CLI_REL) && candidate.exists);
const distCandidate = candidates.find((candidate) => hasCliSuffix(candidate.path, DIST_CLI_REL) && candidate.exists);
if (distCandidate) return distCandidate;
const sourceCandidate = candidates.find((candidate) => candidate.path.endsWith(SOURCE_CLI_REL) && candidate.exists);
const sourceCandidate = candidates.find((candidate) => hasCliSuffix(candidate.path, SOURCE_CLI_REL) && candidate.exists);
if (sourceCandidate) return sourceCandidate;
const fallbackCandidate = candidates.find((candidate) => candidate.path.endsWith(DIST_CLI_REL)) ?? createFallbackCandidate(resolveExecutable);
const fallbackCandidate =
candidates.find((candidate) => hasCliSuffix(candidate.path, DIST_CLI_REL)) ?? createFallbackCandidate(resolveExecutable);
return { ...fallbackCandidate, exists: fallbackCandidate.runtimeAvailable };
}
+32
View File
@@ -0,0 +1,32 @@
import { describe, expect, it } from "bun:test"
import { hasCliSuffix } from "./cli-suffix"
describe("hasCliSuffix", () => {
it("matches cli suffixes across platform separators", () => {
// given
const suffix = "packages/lsp-tools-mcp/dist/cli.js"
const candidatePaths = [
"/home/user/project/packages/lsp-tools-mcp/dist/cli.js",
"C:\\Users\\yeongyu\\project\\packages\\lsp-tools-mcp\\dist\\cli.js",
"\\\\server\\share\\project\\packages\\lsp-tools-mcp\\dist\\cli.js",
"C:/Users/yeongyu/project\\packages/lsp-tools-mcp\\dist/cli.js",
]
// when
const results = candidatePaths.map((candidatePath) => hasCliSuffix(candidatePath, suffix))
// then
expect(results).toEqual([true, true, true, true])
})
it("does not match unrelated cli suffixes", () => {
// given
const candidatePath = "C:\\Users\\yeongyu\\project\\packages\\other-mcp\\dist\\cli.js"
// when
const result = hasCliSuffix(candidatePath, "packages/lsp-tools-mcp/dist/cli.js")
// then
expect(result).toBe(false)
})
})
+7
View File
@@ -0,0 +1,7 @@
function normalizeCliPath(path: string): string {
return path.replaceAll("\\", "/")
}
export function hasCliSuffix(candidatePath: string, suffix: string): boolean {
return normalizeCliPath(candidatePath).endsWith(normalizeCliPath(suffix))
}
+29
View File
@@ -66,6 +66,35 @@ describe("createLspMcpConfig", () => {
expect(config.command).toEqual([bunPath, sourceCliPath, "mcp"])
})
it("does not resolve the MCP command from the opened workspace", () => {
// given
const packageRoot = createTemporaryDirectory("omo-lsp-safe-package-root-")
const workspaceRoot = createTemporaryDirectory("omo-lsp-malicious-workspace-")
const moduleFilePath = join(packageRoot, "dist", "index.js")
const workspaceCliPath = join(workspaceRoot, "packages", "lsp-tools-mcp", "dist", "cli.js")
const gitPath = join(packageRoot, "bin", "git")
const bunPath = join(packageRoot, "bin", "bun")
const nodePath = join(packageRoot, "bin", "node")
const npmPath = join(packageRoot, "bin", "npm")
mkdirSync(join(packageRoot, "dist"), { recursive: true })
mkdirSync(join(workspaceRoot, "packages", "lsp-tools-mcp", "dist"), { recursive: true })
writeFileSync(join(packageRoot, "package.json"), JSON.stringify({ name: "oh-my-opencode" }), "utf-8")
writeFileSync(workspaceCliPath, "console.log('malicious')\n", "utf-8")
// when
const config = createLspMcpConfig({
cwd: workspaceRoot,
moduleUrl: pathToFileURL(moduleFilePath).href,
resolveExecutable: createResolver({ bun: bunPath, git: gitPath, node: nodePath, npm: npmPath }),
})
// then
expect(config.enabled).toBe(true)
expect(config.command[1]).not.toBe(workspaceCliPath)
expect(config.command[1]).toBe("-e")
expect(config.command[3]).toBe(packageRoot)
})
it("returns a bootstrap command when no LSP cli entrypoint exists", () => {
// given
const packageRoot = createTemporaryDirectory("omo-lsp-missing-root-")
+5 -4
View File
@@ -1,6 +1,7 @@
import { existsSync } from "node:fs"
import { dirname, resolve } from "node:path"
import { fileURLToPath } from "node:url"
import { hasCliSuffix } from "./cli-suffix"
import { resolveRuntimeExecutable, type RuntimeExecutable, type RuntimeExecutableResolver } from "./runtime-executable"
const SUBMODULE_REL = "packages/lsp-tools-mcp"
@@ -137,14 +138,14 @@ function resolveLspCommand(options: LspMcpConfigOptions = {}): LspCommandCandida
addAncestorCommandCandidates(moduleDirectory, candidates, seenPaths, pathExists, resolveExecutable)
}
addAncestorCommandCandidates(options.cwd ?? process.cwd(), candidates, seenPaths, pathExists, resolveExecutable)
const distCandidate = candidates.find((candidate) => candidate.path.endsWith(DIST_CLI_REL) && candidate.exists)
const distCandidate = candidates.find((candidate) => hasCliSuffix(candidate.path, DIST_CLI_REL) && candidate.exists)
if (distCandidate) {
return distCandidate
}
const sourceCandidate = candidates.find((candidate) => candidate.path.endsWith(SOURCE_CLI_REL) && candidate.exists)
const sourceCandidate = candidates.find(
(candidate) => hasCliSuffix(candidate.path, SOURCE_CLI_REL) && candidate.exists,
)
if (sourceCandidate) {
return sourceCandidate
}