mcp-scraper 0.15.0 → 0.15.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/dist/bin/api-server.cjs +5 -1
- 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-EZAQWOKI.js +7 -0
- package/dist/chunk-EZAQWOKI.js.map +1 -0
- package/dist/{chunk-ETJBTYZX.js → chunk-QPYYOTT2.js} +2 -2
- package/dist/{server-DDKXWYTO.js → server-FFNOTEQI.js} +7 -3
- package/dist/{server-DDKXWYTO.js.map → server-FFNOTEQI.js.map} +1 -1
- package/docs/mcp-tool-manifest.generated.json +2 -2
- package/package.json +1 -1
- package/dist/chunk-TK2S2M7G.js +0 -7
- package/dist/chunk-TK2S2M7G.js.map +0 -1
- /package/dist/{chunk-ETJBTYZX.js.map → chunk-QPYYOTT2.js.map} +0 -0
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
registerMemoryMcpTools,
|
|
8
8
|
registerPaaExtractorMcpTools,
|
|
9
9
|
registerSerpIntelligenceCaptureTools
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-QPYYOTT2.js";
|
|
11
11
|
import "../chunk-R7EETU7Z.js";
|
|
12
12
|
import "../chunk-HPV4VOQX.js";
|
|
13
13
|
import {
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
import "../chunk-XGIPATLV.js";
|
|
17
17
|
import {
|
|
18
18
|
PACKAGE_VERSION
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-EZAQWOKI.js";
|
|
20
20
|
import "../chunk-HL33CGJF.js";
|
|
21
21
|
import "../chunk-M2S27J6Z.js";
|
|
22
22
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/version.ts"],"sourcesContent":["export const PACKAGE_VERSION = '0.15.1'\n"],"mappings":";AAAO,IAAM,kBAAkB;","names":[]}
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from "./chunk-XGIPATLV.js";
|
|
18
18
|
import {
|
|
19
19
|
PACKAGE_VERSION
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-EZAQWOKI.js";
|
|
21
21
|
import {
|
|
22
22
|
MC_PER_CREDIT
|
|
23
23
|
} from "./chunk-HL33CGJF.js";
|
|
@@ -9245,4 +9245,4 @@ export {
|
|
|
9245
9245
|
registerMemoryMcpTools,
|
|
9246
9246
|
MemoryMcpToolExecutor
|
|
9247
9247
|
};
|
|
9248
|
-
//# sourceMappingURL=chunk-
|
|
9248
|
+
//# sourceMappingURL=chunk-QPYYOTT2.js.map
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
renewConnectedDataArtifactDownload,
|
|
38
38
|
sanitizeAttempts,
|
|
39
39
|
sanitizeHarvestResult
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-QPYYOTT2.js";
|
|
41
41
|
import {
|
|
42
42
|
auditImages,
|
|
43
43
|
buildLinkReport,
|
|
@@ -73,7 +73,7 @@ import {
|
|
|
73
73
|
RawMapsOverviewSchema,
|
|
74
74
|
RawMapsReviewStatsSchema
|
|
75
75
|
} from "./chunk-XGIPATLV.js";
|
|
76
|
-
import "./chunk-
|
|
76
|
+
import "./chunk-EZAQWOKI.js";
|
|
77
77
|
import {
|
|
78
78
|
completeExtractJob,
|
|
79
79
|
countSuccessfulPages,
|
|
@@ -20356,6 +20356,10 @@ async function collectConnectedDataExport(args) {
|
|
|
20356
20356
|
recordBytes += pageBytes;
|
|
20357
20357
|
cursor = page.nextCursor ?? void 0;
|
|
20358
20358
|
continuationCursor = page.nextCursor ?? null;
|
|
20359
|
+
if (page.complete === false && typeof beforePageCursor === "string" && page.nextCursor === beforePageCursor) {
|
|
20360
|
+
warnings.add("The provider could not advance this page after bounded retries. Its records and warnings were included once; retry this exact continuation later.");
|
|
20361
|
+
break;
|
|
20362
|
+
}
|
|
20359
20363
|
if (page.complete || page.nextCursor === null || page.nextCursor === void 0) {
|
|
20360
20364
|
complete = true;
|
|
20361
20365
|
continuationCursor = null;
|
|
@@ -23562,4 +23566,4 @@ app.get("/blog/:slug/", (c) => {
|
|
|
23562
23566
|
export {
|
|
23563
23567
|
app
|
|
23564
23568
|
};
|
|
23565
|
-
//# sourceMappingURL=server-
|
|
23569
|
+
//# sourceMappingURL=server-FFNOTEQI.js.map
|