Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ src/third_party/lighthouse-devtools-mcp-bundle.js

# Release-please formatting brakes CI checks
.claude-plugin/plugin.json
.github/plugin/plugin.json
5 changes: 4 additions & 1 deletion scripts/eval_gemini.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ async function runSingleScenario(
}

// Path to the compiled MCP server
const serverPath = path.join(ROOT_DIR, 'build/src/index.js');
const serverPath = path.join(
ROOT_DIR,
'build/src/bin/chrome-devtools-mcp.js',
);
if (!fs.existsSync(serverPath)) {
throw new Error(
`MCP server not found at ${serverPath}. Please run 'npm run build' first.`,
Expand Down
Loading