We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/antonzherdev/mcp-web-inspector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
browserCheck.ts•404 B
/**
* Get installation instructions for the current context
*/
export function getInstallationInstructions(): string {
return `
Chromium is not available. To fix this:
1. Run: npm install (installs bundled Chromium via @playwright/browser-chromium)
2. Or set CHROME_EXECUTABLE_PATH to your Chrome/Chromium binary
3. For Firefox/WebKit (optional): npx playwright install firefox webkit
`.trim();
}