@imenam/simple-scraper 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,8 +35,9 @@ simple-scraper
|
|
|
35
35
|
|----------|----------|---------|-------------|
|
|
36
36
|
| `PUPPETEER_HEADLESS` | No | `true` | Run Chromium in headless mode. Set to `false` to display the browser window. |
|
|
37
37
|
| `PUPPETEER_TIMEOUT` | No | `30000` | Default timeout in milliseconds for page navigation and waits. |
|
|
38
|
-
| `COOKIES_DIR` | No |
|
|
39
|
-
| `
|
|
38
|
+
| `COOKIES_DIR` | No | - | Absolute path to a folder containing Netscape-format `.txt` cookie files. All files are loaded and merged automatically before each request. |
|
|
39
|
+
| `MCP_LOG_DIR` | No | `.mcp-gui/logs` | Absolute path to the directory where log files are written. |
|
|
40
|
+
| `PROXY_URL` | No | - | Base URL of the [MCP HTTP Gateway](https://www.npmjs.com/package/@imenam/mcp-http-gateway). Required to enable the GUI. |
|
|
40
41
|
| `PROXY_APP_PATH` | No | `/simple-scraper-mcp` | URL path under which the GUI is registered on the proxy. |
|
|
41
42
|
| `PROXY_APP_NAME` | No | `Simple Scraper MCP` | Display name shown in the proxy's app list. |
|
|
42
43
|
|
|
@@ -114,6 +115,7 @@ In Cursor, MCP servers are configured in `.cursor/mcp.json`. You can pass enviro
|
|
|
114
115
|
"PUPPETEER_HEADLESS": "true",
|
|
115
116
|
"PUPPETEER_TIMEOUT": "30000",
|
|
116
117
|
"COOKIES_DIR": "/path/to/your/cookies",
|
|
118
|
+
"MCP_LOG_DIR": "/path/to/your/logs",
|
|
117
119
|
"PROXY_URL": "http://localhost:4500",
|
|
118
120
|
"PROXY_APP_PATH": "/simple-scraper",
|
|
119
121
|
"PROXY_APP_NAME": "Simple Scraper"
|