mcp-scraper 0.65.0 → 0.65.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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/bin/api-server.cjs +5 -2
- 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 +5 -2
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-CGKWNXJR.js +7 -0
- package/dist/chunk-CGKWNXJR.js.map +1 -0
- package/dist/{chunk-PSKRQDGN.js → chunk-PDAKCYHZ.js} +6 -3
- package/dist/chunk-PDAKCYHZ.js.map +1 -0
- package/dist/{server-AFEA235I.js → server-RSHSZBUZ.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-5BODYBIP.js +0 -7
- package/dist/chunk-5BODYBIP.js.map +0 -1
- package/dist/chunk-PSKRQDGN.js.map +0 -1
- /package/dist/{server-AFEA235I.js.map → server-RSHSZBUZ.js.map} +0 -0
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.65.1] - 2026-08-24
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Background site workflows now retain their required `url` in MCP Task start receipts, preventing output-schema validation from rejecting `extract_site`, `analyze_site_similarity`, or `audit_site` before the caller receives its durable task handle.
|
|
12
|
+
|
|
7
13
|
## [0.65.0] - 2026-08-24
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -154,7 +154,7 @@ Build the branded one-click bundle:
|
|
|
154
154
|
npm run build:mcpb
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
-
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.65.
|
|
157
|
+
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.65.1`, SHA-256 `83bcdadf86cf6a800c37e8497e1fb85c157d620d9ab0920149528fcf67f46728`). 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.
|
|
158
158
|
|
|
159
159
|
The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
|
|
160
160
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -19766,7 +19766,7 @@ function buildSeoExport(siteUrl, pages, branding) {
|
|
|
19766
19766
|
branding: branding ?? void 0
|
|
19767
19767
|
};
|
|
19768
19768
|
}
|
|
19769
|
-
function formatBackgroundJobStarted(toolLabel, data, delivery) {
|
|
19769
|
+
function formatBackgroundJobStarted(toolLabel, url, data, delivery) {
|
|
19770
19770
|
if (data.status !== "pending" || typeof data.jobId !== "string") return null;
|
|
19771
19771
|
const jobId2 = data.jobId;
|
|
19772
19772
|
const full = [
|
|
@@ -19781,6 +19781,7 @@ Poll \`check_site_export\` with this jobId. When ready, use \`site_export_read\`
|
|
|
19781
19781
|
return {
|
|
19782
19782
|
content: [{ type: "text", text: full }],
|
|
19783
19783
|
structuredContent: {
|
|
19784
|
+
url,
|
|
19784
19785
|
jobId: jobId2,
|
|
19785
19786
|
status: "pending",
|
|
19786
19787
|
requestedMaxPages: data.requestedMaxPages,
|
|
@@ -19802,6 +19803,7 @@ async function formatExtractSite(raw, input, ctx) {
|
|
|
19802
19803
|
if ("error" in parsed) return formattedErrorResult(parsed.error);
|
|
19803
19804
|
const started = formatBackgroundJobStarted(
|
|
19804
19805
|
input.toolLabel ?? "Multi-Page Site Content Crawl",
|
|
19806
|
+
input.url,
|
|
19805
19807
|
parsed.data,
|
|
19806
19808
|
{
|
|
19807
19809
|
requested: input.delivery ?? "auto",
|
|
@@ -19932,6 +19934,7 @@ async function formatAuditSite(raw, input, ctx) {
|
|
|
19932
19934
|
if ("error" in parsed) return formattedErrorResult(parsed.error);
|
|
19933
19935
|
const started = formatBackgroundJobStarted(
|
|
19934
19936
|
"Technical SEO Audit",
|
|
19937
|
+
input.url,
|
|
19935
19938
|
parsed.data,
|
|
19936
19939
|
{
|
|
19937
19940
|
requested: input.delivery ?? "auto",
|
|
@@ -50394,7 +50397,7 @@ var PACKAGE_VERSION;
|
|
|
50394
50397
|
var init_version = __esm({
|
|
50395
50398
|
"src/version.ts"() {
|
|
50396
50399
|
"use strict";
|
|
50397
|
-
PACKAGE_VERSION = "0.65.
|
|
50400
|
+
PACKAGE_VERSION = "0.65.1";
|
|
50398
50401
|
}
|
|
50399
50402
|
});
|
|
50400
50403
|
|