mcp-scraper 0.64.0 → 0.64.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 -3
- 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 -3
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-3WNPHRGG.js +7 -0
- package/dist/chunk-3WNPHRGG.js.map +1 -0
- package/dist/{chunk-EEW3DMI5.js → chunk-P3NESXFX.js} +6 -4
- package/dist/chunk-P3NESXFX.js.map +1 -0
- package/dist/{server-TMAWQYZE.js → server-PGKMCRF5.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-DYSXI6QU.js +0 -7
- package/dist/chunk-DYSXI6QU.js.map +0 -1
- package/dist/chunk-EEW3DMI5.js.map +0 -1
- /package/dist/{server-TMAWQYZE.js.map → server-PGKMCRF5.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.64.1] - 2026-08-24
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Aligned the `lead_list_import` structured output schema with its mapping suggestions so live CSV, TSV, rows, and XLSX imports can return each suggestion's acceptance decision without failing MCP output validation.
|
|
12
|
+
|
|
7
13
|
## [0.64.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.64.
|
|
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.64.1`, SHA-256 `907f808d1e95c4e09773e826de4ed3da95a3bef010ec1b4a93b9f03fcd6e4b98`). 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
|
@@ -20769,7 +20769,8 @@ function formatLeadListImport(raw) {
|
|
|
20769
20769
|
const map = Object.keys(detailedMap).length > 0 ? detailedMap : Object.fromEntries(Object.entries(simpleMap).map(([field, header]) => [field, {
|
|
20770
20770
|
header: header == null ? null : String(header),
|
|
20771
20771
|
confidence: header == null ? 0 : 1,
|
|
20772
|
-
reason: "server_suggestion"
|
|
20772
|
+
reason: "server_suggestion",
|
|
20773
|
+
accepted: header != null
|
|
20773
20774
|
}]));
|
|
20774
20775
|
const mappingLines = Object.entries(map).slice(0, 12).map(([field, suggestion]) => {
|
|
20775
20776
|
const record = structuredRecord(suggestion);
|
|
@@ -49786,7 +49787,7 @@ var PACKAGE_VERSION;
|
|
|
49786
49787
|
var init_version = __esm({
|
|
49787
49788
|
"src/version.ts"() {
|
|
49788
49789
|
"use strict";
|
|
49789
|
-
PACKAGE_VERSION = "0.64.
|
|
49790
|
+
PACKAGE_VERSION = "0.64.1";
|
|
49790
49791
|
}
|
|
49791
49792
|
});
|
|
49792
49793
|
|
|
@@ -52587,7 +52588,8 @@ var init_mcp_tool_schemas = __esm({
|
|
|
52587
52588
|
LeadSuggestedColumnOutputSchema = import_zod45.z.object({
|
|
52588
52589
|
header: NullableString,
|
|
52589
52590
|
confidence: import_zod45.z.number().min(0).max(1),
|
|
52590
|
-
reason: import_zod45.z.string()
|
|
52591
|
+
reason: import_zod45.z.string(),
|
|
52592
|
+
accepted: import_zod45.z.boolean()
|
|
52591
52593
|
}).strict();
|
|
52592
52594
|
LeadColumnMapSuggestionOutputSchema = import_zod45.z.object({
|
|
52593
52595
|
name: LeadSuggestedColumnOutputSchema,
|