mcp-scraper 0.41.0 → 0.41.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
@@ -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.41.0`, SHA-256 `7f32f079e82a49acf936bd9b91d1c0b481e1949e0f52a27a5e20f312d7265228`). 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.41.1`, SHA-256 `4d503c1726a1044166d326a3da80bb4ea7649aa3c4d92f76a3ead2889fbf5c57`). 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
 
@@ -39196,7 +39196,7 @@ var PACKAGE_VERSION;
39196
39196
  var init_version = __esm({
39197
39197
  "src/version.ts"() {
39198
39198
  "use strict";
39199
- PACKAGE_VERSION = "0.41.0";
39199
+ PACKAGE_VERSION = "0.41.1";
39200
39200
  }
39201
39201
  });
39202
39202
 
@@ -56330,17 +56330,19 @@ async function exportSlackChannelPage(input, dependencies) {
56330
56330
  const state = decodeCursor(input.cursor, channelId, includeThreads);
56331
56331
  const pageSize = Math.max(1, Math.min(200, Math.floor(input.pageSize)));
56332
56332
  if (state.phase === "history") {
56333
+ const oldest = slackBoundaryTimestamp(input.from, -1);
56334
+ const latest = slackBoundaryTimestamp(input.to, 0);
56333
56335
  const result = await callSlackToolWithRetry(dependencies, {
56334
56336
  tool: "get-conversation-history",
56335
56337
  input: {
56336
56338
  channel_id: channelId,
56337
56339
  limit: pageSize,
56338
- oldest: slackBoundaryTimestamp(input.from, -1),
56339
- latest: slackBoundaryTimestamp(input.to, 0),
56340
+ oldest,
56341
+ latest,
56340
56342
  inclusive: false,
56341
56343
  ...state.historyCursor ? { cursor: state.historyCursor } : {}
56342
56344
  },
56343
- requestId: `slack-export:${input.connectionId}:${channelId}:history:${state.historyCursor ?? "start"}`
56345
+ requestId: `slack-export:${input.connectionId}:${channelId}:history:${oldest}:${latest}:${pageSize}:${state.historyCursor ?? "start"}`
56344
56346
  });
56345
56347
  const messages = messagesFromToolResult(result).slice(0, pageSize);
56346
56348
  const historyCursor = nextCursorFromToolResult(result);
@@ -56392,7 +56394,7 @@ async function exportSlackChannelPage(input, dependencies) {
56392
56394
  limit: perThreadLimit,
56393
56395
  ...thread.cursor ? { cursor: thread.cursor } : {}
56394
56396
  },
56395
- requestId: `slack-export:${input.connectionId}:${channelId}:thread:${thread.threadTs}:${thread.cursor ?? "start"}`
56397
+ requestId: `slack-export:${input.connectionId}:${channelId}:thread:${thread.threadTs}:${perThreadLimit}:${thread.cursor ?? "start"}`
56396
56398
  })));
56397
56399
  const records = [];
56398
56400
  const stillPending = [];