mcp-scraper 0.72.4 → 0.72.5
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 +8 -1
- package/README.md +1 -1
- package/dist/bin/api-server.cjs +17 -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-EYKIQBYR.js → chunk-3SECYTNB.js} +1 -1
- package/dist/{chunk-WQBWDDT4.js → chunk-WHXNA6GK.js} +1 -1
- package/dist/{server-ORLMQHS6.js → server-IABKDP7V.js} +18 -3
- package/package.json +1 -1
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.72.5] - 2026-08-27
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Gmail Memory imports now provide deterministic descriptions for newly encountered import tags, allowing complete messages, manifests, and attachments to enter the selected vault instead of stopping at the first note write.
|
|
12
|
+
|
|
7
13
|
## [0.72.4] - 2026-08-27
|
|
8
14
|
|
|
9
15
|
### Fixed
|
|
@@ -1266,7 +1272,8 @@ All notable changes to MCP Scraper are documented here. The format is based on [
|
|
|
1266
1272
|
- Write actions remain unavailable until the account owner explicitly enables them.
|
|
1267
1273
|
- Provider-specific connection data is normalized into one agent-facing contract.
|
|
1268
1274
|
|
|
1269
|
-
[Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.
|
|
1275
|
+
[Unreleased]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.5...HEAD
|
|
1276
|
+
[0.72.5]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.4...v0.72.5
|
|
1270
1277
|
[0.72.4]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.3...v0.72.4
|
|
1271
1278
|
[0.72.3]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.2...v0.72.3
|
|
1272
1279
|
[0.72.2]: https://github.com/VilovietaSEO/mcp-scraper/compare/v0.72.1...v0.72.2
|
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.5`, SHA-256 `fa1470cbf16f4586a6009e32f0278078e7a99065676bf8ad1975db70736ad5fb`). 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
|
@@ -45524,6 +45524,21 @@ function gmailFileAssetSaveArguments(args) {
|
|
|
45524
45524
|
idempotencyKey: args.idempotencyKey
|
|
45525
45525
|
};
|
|
45526
45526
|
}
|
|
45527
|
+
function gmailMemoryNoteArguments(args) {
|
|
45528
|
+
const descriptions = {
|
|
45529
|
+
gmail: "Content preserved from an owner-authorized Gmail connection.",
|
|
45530
|
+
"email-import": "A complete email source captured through the Gmail import workflow.",
|
|
45531
|
+
"import-manifest": "A durable manifest recording a completed or partial source import."
|
|
45532
|
+
};
|
|
45533
|
+
return {
|
|
45534
|
+
vault: args.vault,
|
|
45535
|
+
path: args.path,
|
|
45536
|
+
title: args.title,
|
|
45537
|
+
content: args.content,
|
|
45538
|
+
props: { sourceKey: args.sourceKey, capturedAt: args.capturedAt, tags: args.tags, references: args.references ?? [] },
|
|
45539
|
+
tagDescriptions: Object.fromEntries(args.tags.map((tag) => [tag, descriptions[tag] ?? `Gmail import tag: ${tag}.`]))
|
|
45540
|
+
};
|
|
45541
|
+
}
|
|
45527
45542
|
function gmailMemoryAssetToolsForMime(mimeType) {
|
|
45528
45543
|
return mimeType.startsWith("image/") ? { saveTool: "image_asset_save", getTool: "image_asset_get" } : { saveTool: "file_asset_save", getTool: "file_asset_get" };
|
|
45529
45544
|
}
|
|
@@ -45562,7 +45577,7 @@ async function memoryPort(c) {
|
|
|
45562
45577
|
},
|
|
45563
45578
|
async saveNote(args) {
|
|
45564
45579
|
const path6 = `gmail/${(0, import_node_crypto29.createHash)("sha256").update(args.sourceKey).digest("hex")}.md`;
|
|
45565
|
-
const result2 = await memoryCall("putTool", {
|
|
45580
|
+
const result2 = await memoryCall("putTool", gmailMemoryNoteArguments({ ...args, path: path6 }), key2);
|
|
45566
45581
|
if (!result2.ok) throw new GmailMemoryIngestError("memory_note_failed", String(result2.error ?? "Memory note write failed."), 503, true);
|
|
45567
45582
|
return { ...result2, path: path6 };
|
|
45568
45583
|
},
|
|
@@ -54181,7 +54196,7 @@ var PACKAGE_VERSION;
|
|
|
54181
54196
|
var init_version = __esm({
|
|
54182
54197
|
"src/version.ts"() {
|
|
54183
54198
|
"use strict";
|
|
54184
|
-
PACKAGE_VERSION = "0.72.
|
|
54199
|
+
PACKAGE_VERSION = "0.72.5";
|
|
54185
54200
|
}
|
|
54186
54201
|
});
|
|
54187
54202
|
|
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-IABKDP7V.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.5";
|
|
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-WHXNA6GK.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-3SECYTNB.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-WHXNA6GK.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-3SECYTNB.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-WHXNA6GK.js";
|
|
340
340
|
import {
|
|
341
341
|
SITE_EXTRACT_ARTIFACT_PREFIX,
|
|
342
342
|
abandonExtractSettlement,
|
|
@@ -21938,6 +21938,21 @@ function gmailFileAssetSaveArguments(args) {
|
|
|
21938
21938
|
idempotencyKey: args.idempotencyKey
|
|
21939
21939
|
};
|
|
21940
21940
|
}
|
|
21941
|
+
function gmailMemoryNoteArguments(args) {
|
|
21942
|
+
const descriptions = {
|
|
21943
|
+
gmail: "Content preserved from an owner-authorized Gmail connection.",
|
|
21944
|
+
"email-import": "A complete email source captured through the Gmail import workflow.",
|
|
21945
|
+
"import-manifest": "A durable manifest recording a completed or partial source import."
|
|
21946
|
+
};
|
|
21947
|
+
return {
|
|
21948
|
+
vault: args.vault,
|
|
21949
|
+
path: args.path,
|
|
21950
|
+
title: args.title,
|
|
21951
|
+
content: args.content,
|
|
21952
|
+
props: { sourceKey: args.sourceKey, capturedAt: args.capturedAt, tags: args.tags, references: args.references ?? [] },
|
|
21953
|
+
tagDescriptions: Object.fromEntries(args.tags.map((tag) => [tag, descriptions[tag] ?? `Gmail import tag: ${tag}.`]))
|
|
21954
|
+
};
|
|
21955
|
+
}
|
|
21941
21956
|
function gmailMemoryAssetToolsForMime(mimeType) {
|
|
21942
21957
|
return mimeType.startsWith("image/") ? { saveTool: "image_asset_save", getTool: "image_asset_get" } : { saveTool: "file_asset_save", getTool: "file_asset_get" };
|
|
21943
21958
|
}
|
|
@@ -21976,7 +21991,7 @@ async function memoryPort(c) {
|
|
|
21976
21991
|
},
|
|
21977
21992
|
async saveNote(args) {
|
|
21978
21993
|
const path5 = `gmail/${createHash6("sha256").update(args.sourceKey).digest("hex")}.md`;
|
|
21979
|
-
const result2 = await memoryCall("putTool", {
|
|
21994
|
+
const result2 = await memoryCall("putTool", gmailMemoryNoteArguments({ ...args, path: path5 }), key2);
|
|
21980
21995
|
if (!result2.ok) throw new GmailMemoryIngestError("memory_note_failed", String(result2.error ?? "Memory note write failed."), 503, true);
|
|
21981
21996
|
return { ...result2, path: path5 };
|
|
21982
21997
|
},
|