You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend `npx` to install the server, but you can use any node package manager of your preference such as `yarn`, `pnpm`, `bun`, etc.
47
55
56
+
### Installation Note
57
+
58
+
⚠️ **Important**: The first time you install Factifai MCP Server, it will automatically download and install browser dependencies using Playwright. This process may take several minutes depending on your internet connection and system specifications.
This happens only once, and subsequent runs will be much faster as the browsers are already installed.
66
+
67
+
### Pre-Installation Tip
68
+
69
+
⚠️ **Recommended for First-Time Installation**: Many MCP clients have strict timeout limits for server startup. The browser installation process during first-time setup may exceed these timeouts, causing the installation to fail or appear non-responsive.
70
+
71
+
To avoid timeout issues, we strongly recommend pre-installing Playwright browsers manually:
72
+
73
+
```bash
74
+
# Step 1: Install Playwright browsers manually before installing the MCP server
75
+
npx playwright install --with-deps
76
+
77
+
# Step 2: Then install the MCP server (will be much faster and avoid timeouts)
0 commit comments