mcp-scraper 0.72.1 → 0.72.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 +15 -1
- package/README.md +1 -1
- package/dist/bin/api-server.cjs +5 -2
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/mcp-scraper-cli.cjs +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.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/{chunk-XYRD4KLT.js → chunk-QRXSCUU2.js} +1 -1
- package/dist/{chunk-57F5PKS5.js → chunk-V2YM7V4E.js} +1 -1
- package/dist/{server-QY2AZ2OW.js → server-MCB6LV5G.js} +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to MCP Scraper are documented here. The format is based on [
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.72.3] - 2026-08-27
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Production now routes every `/api/gmail/*` workflow request to the API function, making full message reads, attachment retrieval, immutable selections, bulk actions, exports, and Memory imports callable through the hosted MCP instead of returning the frontend 404 page.
|
|
12
|
+
|
|
13
|
+
## [0.72.2] - 2026-08-27
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Connection discovery now returns cached, tenant-owned Nango connection summaries without waiting for every provider's live MCP catalog; explicit describe, test, and call routes still refresh live capabilities at the point of use.
|
|
18
|
+
|
|
7
19
|
## [0.72.1] - 2026-08-27
|
|
8
20
|
|
|
9
21
|
### Fixed
|
|
@@ -1248,7 +1260,9 @@ All notable changes to MCP Scraper are documented here. The format is based on [
|
|
|
1248
1260
|
- Write actions remain unavailable until the account owner explicitly enables them.
|
|
1249
1261
|
- Provider-specific connection data is normalized into one agent-facing contract.
|
|
1250
1262
|
|
|
1251
|
-
[Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.
|
|
1263
|
+
[Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.3...HEAD
|
|
1264
|
+
[0.72.3]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.2...v0.72.3
|
|
1265
|
+
[0.72.2]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.1...v0.72.2
|
|
1252
1266
|
[0.72.1]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.0...v0.72.1
|
|
1253
1267
|
[0.72.0]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.71.0...v0.72.0
|
|
1254
1268
|
[0.71.0]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.70.0...v0.71.0
|
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ Build the branded one-click bundle:
|
|
|
159
159
|
npm run build:mcpb
|
|
160
160
|
```
|
|
161
161
|
|
|
162
|
-
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.72.
|
|
162
|
+
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.72.3`, SHA-256 `2d0a2d317cdd870c43a34163565614ce7edc0c24597c88d1a329d6c4914c94a3`). Install it by opening or dragging it into Claude Desktop. Claude displays the `MCP Scraper` install card, icon, API-key configuration field, and manually curated current-release message from the bundle manifest.
|
|
163
163
|
|
|
164
164
|
The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
|
|
165
165
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -54132,7 +54132,7 @@ var PACKAGE_VERSION;
|
|
|
54132
54132
|
var init_version = __esm({
|
|
54133
54133
|
"src/version.ts"() {
|
|
54134
54134
|
"use strict";
|
|
54135
|
-
PACKAGE_VERSION = "0.72.
|
|
54135
|
+
PACKAGE_VERSION = "0.72.3";
|
|
54136
54136
|
}
|
|
54137
54137
|
});
|
|
54138
54138
|
|
|
@@ -104874,7 +104874,10 @@ async function combinedConnectionCatalog() {
|
|
|
104874
104874
|
];
|
|
104875
104875
|
}
|
|
104876
104876
|
async function combinedConnections(identity) {
|
|
104877
|
-
const [nango, resend] = await Promise.allSettled([
|
|
104877
|
+
const [nango, resend] = await Promise.allSettled([
|
|
104878
|
+
getNangoConnections(identity, { summaryOnly: true }),
|
|
104879
|
+
getResendConnections(identity)
|
|
104880
|
+
]);
|
|
104878
104881
|
if (nango.status === "rejected") {
|
|
104879
104882
|
console.warn("[schedule-connections] Nango connection listing unavailable:", nango.reason instanceof Error ? nango.reason.message : "unknown error");
|
|
104880
104883
|
}
|
package/dist/bin/api-server.js
CHANGED
|
@@ -17,7 +17,7 @@ loadDotEnv();
|
|
|
17
17
|
async function main() {
|
|
18
18
|
const [{ serve }, { app }, { startWorker }, { migrate }] = await Promise.all([
|
|
19
19
|
import("@hono/node-server"),
|
|
20
|
-
import("../server-
|
|
20
|
+
import("../server-MCB6LV5G.js"),
|
|
21
21
|
import("../worker-JQORPCFQ.js"),
|
|
22
22
|
import("../db-566MOHHD.js")
|
|
23
23
|
]);
|
|
@@ -112,7 +112,7 @@ function renderInstallTerminal(options) {
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
// src/version.ts
|
|
115
|
-
var PACKAGE_VERSION = "0.72.
|
|
115
|
+
var PACKAGE_VERSION = "0.72.3";
|
|
116
116
|
|
|
117
117
|
// bin/mcp-scraper-install.ts
|
|
118
118
|
var noColor = process.argv.includes("--no-color") || process.env.NO_COLOR !== void 0 || process.env.FORCE_COLOR === "0" || !process.stdout.isTTY;
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "../chunk-RAFQEPJ4.js";
|
|
5
5
|
import {
|
|
6
6
|
PACKAGE_VERSION
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-V2YM7V4E.js";
|
|
8
8
|
|
|
9
9
|
// bin/mcp-scraper-install.ts
|
|
10
10
|
var noColor = process.argv.includes("--no-color") || process.env.NO_COLOR !== void 0 || process.env.FORCE_COLOR === "0" || !process.stdout.isTTY;
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
registerScheduledResultsMcpTools,
|
|
14
14
|
registerSerpIntelligenceCaptureTools,
|
|
15
15
|
resolveDeploymentProfile
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-QRXSCUU2.js";
|
|
17
17
|
import "../chunk-PGJQDMC2.js";
|
|
18
18
|
import "../chunk-T3MZISOF.js";
|
|
19
19
|
import "../chunk-7RQULQF3.js";
|
|
@@ -26,7 +26,7 @@ import "../chunk-VXLU74YZ.js";
|
|
|
26
26
|
import "../chunk-GGZEC22A.js";
|
|
27
27
|
import {
|
|
28
28
|
PACKAGE_VERSION
|
|
29
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-V2YM7V4E.js";
|
|
30
30
|
import "../chunk-DNM65UCK.js";
|
|
31
31
|
import "../chunk-FVL4GUTP.js";
|
|
32
32
|
import "../chunk-WEFPBAAG.js";
|
|
@@ -271,7 +271,7 @@ import {
|
|
|
271
271
|
resolveDeploymentProfile,
|
|
272
272
|
resolveLocalSourcebookSchemaType,
|
|
273
273
|
transcribeMediaUrl
|
|
274
|
-
} from "./chunk-
|
|
274
|
+
} from "./chunk-QRXSCUU2.js";
|
|
275
275
|
import {
|
|
276
276
|
auditImageUrls,
|
|
277
277
|
auditImages,
|
|
@@ -336,7 +336,7 @@ import {
|
|
|
336
336
|
} from "./chunk-GGZEC22A.js";
|
|
337
337
|
import {
|
|
338
338
|
PACKAGE_VERSION
|
|
339
|
-
} from "./chunk-
|
|
339
|
+
} from "./chunk-V2YM7V4E.js";
|
|
340
340
|
import {
|
|
341
341
|
SITE_EXTRACT_ARTIFACT_PREFIX,
|
|
342
342
|
abandonExtractSettlement,
|
|
@@ -56455,7 +56455,10 @@ async function combinedConnectionCatalog() {
|
|
|
56455
56455
|
];
|
|
56456
56456
|
}
|
|
56457
56457
|
async function combinedConnections(identity) {
|
|
56458
|
-
const [nango, resend] = await Promise.allSettled([
|
|
56458
|
+
const [nango, resend] = await Promise.allSettled([
|
|
56459
|
+
getNangoConnections(identity, { summaryOnly: true }),
|
|
56460
|
+
getResendConnections(identity)
|
|
56461
|
+
]);
|
|
56459
56462
|
if (nango.status === "rejected") {
|
|
56460
56463
|
console.warn("[schedule-connections] Nango connection listing unavailable:", nango.reason instanceof Error ? nango.reason.message : "unknown error");
|
|
56461
56464
|
}
|