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 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.0`, SHA-256 `86faebabe46ca392ed21237a5e68b7dbd5f9db38027fc93da9d67fc878ffb263`). 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.
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
 
@@ -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.0";
50400
+ PACKAGE_VERSION = "0.65.1";
50398
50401
  }
50399
50402
  });
50400
50403