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 +1 -1
- package/dist/bin/api-server.cjs +7 -5
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/mcp-scraper-cli.cjs +1 -1
- package/dist/bin/mcp-scraper-cli.cjs.map +1 -1
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-install.cjs +1 -1
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +1 -1
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-R3EME5HH.js +7 -0
- package/dist/chunk-R3EME5HH.js.map +1 -0
- package/dist/{chunk-SIE5LZ2V.js → chunk-VE5T5UPM.js} +2 -2
- package/dist/{server-2JJPCZH4.js → server-PKTDPCB2.js} +9 -7
- package/dist/{server-2JJPCZH4.js.map → server-PKTDPCB2.js.map} +1 -1
- package/package.json +1 -1
- package/dist/chunk-OOB35KFT.js +0 -7
- package/dist/chunk-OOB35KFT.js.map +0 -1
- /package/dist/{chunk-SIE5LZ2V.js.map → chunk-VE5T5UPM.js.map} +0 -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.41.
|
|
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
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -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.
|
|
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
|
|
56339
|
-
latest
|
|
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 = [];
|