We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aff266 commit 0287486Copy full SHA for 0287486
.prettierignore
@@ -4,3 +4,4 @@ src/third_party/lighthouse-devtools-mcp-bundle.js
4
5
# Release-please formatting brakes CI checks
6
.claude-plugin/plugin.json
7
+.github/plugin/plugin.json
scripts/eval_gemini.ts
@@ -99,7 +99,10 @@ async function runSingleScenario(
99
}
100
101
// Path to the compiled MCP server
102
- const serverPath = path.join(ROOT_DIR, 'build/src/index.js');
+ const serverPath = path.join(
103
+ ROOT_DIR,
104
+ 'build/src/bin/chrome-devtools-mcp.js',
105
+ );
106
if (!fs.existsSync(serverPath)) {
107
throw new Error(
108
`MCP server not found at ${serverPath}. Please run 'npm run build' first.`,
0 commit comments