mcp-scraper 0.33.0 → 0.33.1

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 CHANGED
@@ -88,7 +88,7 @@ Build the branded one-click bundle:
88
88
  npm run build:mcpb
89
89
  ```
90
90
 
91
- The generated bundle is written to `build/mcpb/mcp-scraper-<version>.mcpb` and copied to `public/downloads/` for the hosted download. The current public bundle is `https://mcpscraper.dev/downloads/mcp-scraper.mcpb` (`0.33.0`, SHA-256 `e1426b852fdcb832bfa615e3d1a56828f5c0ed411ba2920241112174ac6d10d6`). Install it by opening or dragging it into Claude Desktop. Claude displays the `MCP Scraper` install card, icon, and API-key configuration field from the bundle manifest.
91
+ The generated bundle is written to `build/mcpb/mcp-scraper-<version>.mcpb` and copied to `public/downloads/` for the hosted download. The current public bundle is `https://mcpscraper.dev/downloads/mcp-scraper.mcpb` (`0.33.1`, SHA-256 `c9122255263b899e7ac95825d0212c54f63059be0370dabd67aea57af82f5754`). Install it by opening or dragging it into Claude Desktop. Claude displays the `MCP Scraper` install card, icon, and API-key configuration field from the bundle manifest.
92
92
 
93
93
  The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
94
94
 
@@ -20089,7 +20089,9 @@ var init_MapsExtractor = __esm({
20089
20089
 
20090
20090
  // src/maps-search-rotation.ts
20091
20091
  function mapsSearchMaxAttemptsForProxyMode(proxyMode) {
20092
- return proxyMode === "location" ? MAPS_SEARCH_LOCATION_PROXY_MAX_ATTEMPTS : MAPS_SEARCH_MAX_ATTEMPTS;
20092
+ if (proxyMode === "location") return MAPS_SEARCH_LOCATION_PROXY_MAX_ATTEMPTS;
20093
+ if (proxyMode === "none") return MAPS_SEARCH_NONE_MAX_ATTEMPTS;
20094
+ return MAPS_SEARCH_MAX_ATTEMPTS;
20093
20095
  }
20094
20096
  function mapsSearchErrorMessage(err) {
20095
20097
  return sanitizeVendorName(err instanceof Error ? err.message : String(err));
@@ -20189,8 +20191,8 @@ async function runMapsSearchWithRotation(options) {
20189
20191
  proxyZip,
20190
20192
  kernelProxyId: options.proxyMode === "none" ? void 0 : resolution2.kernelProxyId,
20191
20193
  kernelProxyResolution: resolution2.resolution,
20192
- serpRedirect: options.proxyMode === "none" && attemptIndex >= 1 && attemptIndex < maxAttempts - 1,
20193
- forceDirectEgress: options.proxyMode === "none" && attemptIndex >= 1
20194
+ serpRedirect: options.proxyMode === "none" && attemptIndex >= 2 && attemptIndex < 6,
20195
+ forceDirectEgress: options.proxyMode === "none" && attemptIndex >= 4
20194
20196
  };
20195
20197
  const isHeadfulEscalation = attemptIndex === maxAttempts - 1;
20196
20198
  const baseCtx = currentCostContext();
@@ -20265,7 +20267,7 @@ async function runMapsSearchWithRotation(options) {
20265
20267
  true
20266
20268
  );
20267
20269
  }
20268
- var MAPS_SEARCH_MAX_ATTEMPTS, MAPS_SEARCH_LOCATION_PROXY_MAX_ATTEMPTS, MapsSearchRotationError;
20270
+ var MAPS_SEARCH_MAX_ATTEMPTS, MAPS_SEARCH_NONE_MAX_ATTEMPTS, MAPS_SEARCH_LOCATION_PROXY_MAX_ATTEMPTS, MapsSearchRotationError;
20269
20271
  var init_maps_search_rotation = __esm({
20270
20272
  "src/maps-search-rotation.ts"() {
20271
20273
  "use strict";
@@ -20275,6 +20277,7 @@ var init_maps_search_rotation = __esm({
20275
20277
  init_kernel_proxy_resolver();
20276
20278
  init_cost_context();
20277
20279
  MAPS_SEARCH_MAX_ATTEMPTS = 3;
20280
+ MAPS_SEARCH_NONE_MAX_ATTEMPTS = 7;
20278
20281
  MAPS_SEARCH_LOCATION_PROXY_MAX_ATTEMPTS = 5;
20279
20282
  MapsSearchRotationError = class extends Error {
20280
20283
  constructor(message, attempts, retryable, errorCode = "maps_search_failed") {
@@ -29812,7 +29815,7 @@ var PACKAGE_VERSION;
29812
29815
  var init_version = __esm({
29813
29816
  "src/version.ts"() {
29814
29817
  "use strict";
29815
- PACKAGE_VERSION = "0.33.0";
29818
+ PACKAGE_VERSION = "0.33.1";
29816
29819
  }
29817
29820
  });
29818
29821