mcp-scraper 0.54.2 → 0.54.3

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to MCP Scraper are documented here. The format is based on [
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.54.3] - 2026-08-14
8
+
9
+ ### Fixed
10
+
11
+ - Reddit Google discovery now keeps its first-page managed SERP result instead of risking the entire discovery on a second-page navigation. The SERP-only route uses one attempt and an explicit one-question no-op bound, removing the inherited `maxQuestions: 100` diagnostic while preserving the original query and 30-day filter.
12
+
7
13
  ## [0.54.2] - 2026-08-14
8
14
 
9
15
  ### Changed
@@ -864,7 +870,8 @@ All notable changes to MCP Scraper are documented here. The format is based on [
864
870
  - Write actions remain unavailable until the account owner explicitly enables them.
865
871
  - Provider-specific connection data is normalized into one agent-facing contract.
866
872
 
867
- [Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.54.2...HEAD
873
+ [Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.54.3...HEAD
874
+ [0.54.3]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.54.2...v0.54.3
868
875
  [0.54.2]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.54.1...v0.54.2
869
876
  [0.54.1]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.54.0...v0.54.1
870
877
  [0.54.0]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.53.1...v0.54.0
package/README.md CHANGED
@@ -90,7 +90,7 @@ Build the branded one-click bundle:
90
90
  npm run build:mcpb
91
91
  ```
92
92
 
93
- 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.54.2`, SHA-256 `26c856fbbb5a818aed5b1ef0c010068ab044372dc1715357f2cb64e8126bc512`). 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.
93
+ 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.54.3`, SHA-256 `58d38f83f74d72de330c58e2419573c7c37a02456db4b10829236cffbfd8837f`). 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.
94
94
 
95
95
  The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
96
96
 
@@ -37910,7 +37910,9 @@ var init_reddit_routes = __esm({
37910
37910
  query: serpQuery,
37911
37911
  serpOnly: true,
37912
37912
  proxyMode: "none",
37913
- pages: 2,
37913
+ pages: 1,
37914
+ maxAttempts: 1,
37915
+ maxQuestions: 1,
37914
37916
  recency: body.window === "all" ? void 0 : body.window,
37915
37917
  kernelApiKey: browserServiceApiKey(),
37916
37918
  format: "json",
@@ -37921,7 +37923,12 @@ var init_reddit_routes = __esm({
37921
37923
  candidates = extractRedditThreadUrls(serp.organicResults, body.maxThreads);
37922
37924
  primaryDiscoveryDegraded = serp.diagnostics?.degradedResult === true;
37923
37925
  primaryDegradationReasons = Array.isArray(serp.diagnostics?.degradationReasons) ? serp.diagnostics.degradationReasons.filter((reason) => typeof reason === "string") : [];
37924
- } catch {
37926
+ } catch (error) {
37927
+ console.warn(JSON.stringify({
37928
+ event: "reddit_serp_discovery_failed",
37929
+ error_name: error instanceof Error ? error.name : "Error",
37930
+ message: error instanceof Error ? error.message : String(error)
37931
+ }));
37925
37932
  candidates = [];
37926
37933
  primaryDiscoveryDegraded = true;
37927
37934
  primaryDegradationReasons = ["primary_serp_failed"];
@@ -43975,7 +43982,7 @@ var PACKAGE_VERSION;
43975
43982
  var init_version = __esm({
43976
43983
  "src/version.ts"() {
43977
43984
  "use strict";
43978
- PACKAGE_VERSION = "0.54.2";
43985
+ PACKAGE_VERSION = "0.54.3";
43979
43986
  }
43980
43987
  });
43981
43988