mcp-scraper 0.88.0 → 0.88.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.js +1 -1
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-core.js +3 -3
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.js +3 -3
- package/dist/{chunk-P5FPC54B.js → chunk-65OWZPWE.js} +2 -2
- package/dist/{chunk-2JVZQGSN.js → chunk-EG2PDKD7.js} +36 -51
- package/dist/{chunk-XIJI34RM.js → chunk-HIMFLGLV.js} +1 -1
- package/dist/{server-PD3TDL6Q.js → server-JCJML2EW.js} +2 -2
- package/package.json +2 -2
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.88.1] - 2026-09-02
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Updated the root server's in-process Memory dependency to the released JWT-aware `mcpscraper-memory-tools` 1.19.0 and `mcpscraper-memory-db` 1.18.0, so the unified customer key reaches Memory, Research, and CRM without being mistaken for a retired legacy key.
|
|
12
|
+
|
|
7
13
|
## [0.88.0] - 2026-09-02
|
|
8
14
|
|
|
9
15
|
### Changed
|
package/README.md
CHANGED
|
@@ -175,7 +175,7 @@ Build the branded one-click bundle:
|
|
|
175
175
|
npm run build:mcpb
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
-
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.88.
|
|
178
|
+
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.88.1`, SHA-256 `f08c1c24f5537e4ba5fdaa9abac2124b38b1c05dc00c4a67596e51717731f78a`). 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.
|
|
179
179
|
|
|
180
180
|
The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
|
|
181
181
|
|
package/dist/bin/api-server.js
CHANGED
|
@@ -17,7 +17,7 @@ loadDotEnv();
|
|
|
17
17
|
async function main() {
|
|
18
18
|
const [{ serve }, { app, personalAssistantProductionStartup }, { startWorker }, { migrate }] = await Promise.all([
|
|
19
19
|
import("@hono/node-server"),
|
|
20
|
-
import("../server-
|
|
20
|
+
import("../server-JCJML2EW.js"),
|
|
21
21
|
import("../worker-LDCAULWL.js"),
|
|
22
22
|
import("../db-Z34LPZNR.js")
|
|
23
23
|
]);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
runMcpScraperStdio
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-65OWZPWE.js";
|
|
5
|
+
import "../chunk-EG2PDKD7.js";
|
|
6
6
|
import "../chunk-PGJQDMC2.js";
|
|
7
7
|
import "../chunk-DNM65UCK.js";
|
|
8
8
|
import "../chunk-T3MZISOF.js";
|
|
@@ -13,7 +13,7 @@ import "../chunk-OPQIGAFB.js";
|
|
|
13
13
|
import "../chunk-ABF2CGOZ.js";
|
|
14
14
|
import "../chunk-P7FWOMU7.js";
|
|
15
15
|
import "../chunk-GGZEC22A.js";
|
|
16
|
-
import "../chunk-
|
|
16
|
+
import "../chunk-HIMFLGLV.js";
|
|
17
17
|
import "../chunk-YXNDOQXN.js";
|
|
18
18
|
|
|
19
19
|
// src/mcp/thorbit-restricted-tool-surface.ts
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "../chunk-ABF2CGOZ.js";
|
|
5
5
|
import {
|
|
6
6
|
PACKAGE_VERSION
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-HIMFLGLV.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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
runMcpScraperStdio
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-65OWZPWE.js";
|
|
5
|
+
import "../chunk-EG2PDKD7.js";
|
|
6
6
|
import "../chunk-PGJQDMC2.js";
|
|
7
7
|
import "../chunk-DNM65UCK.js";
|
|
8
8
|
import "../chunk-T3MZISOF.js";
|
|
@@ -13,7 +13,7 @@ import "../chunk-OPQIGAFB.js";
|
|
|
13
13
|
import "../chunk-ABF2CGOZ.js";
|
|
14
14
|
import "../chunk-P7FWOMU7.js";
|
|
15
15
|
import "../chunk-GGZEC22A.js";
|
|
16
|
-
import "../chunk-
|
|
16
|
+
import "../chunk-HIMFLGLV.js";
|
|
17
17
|
import "../chunk-YXNDOQXN.js";
|
|
18
18
|
|
|
19
19
|
// bin/mcp-stdio-server.ts
|
|
@@ -12,13 +12,13 @@ import {
|
|
|
12
12
|
registerScheduledResultsMcpTools,
|
|
13
13
|
registerSerpIntelligenceCaptureTools,
|
|
14
14
|
resolveDeploymentProfile
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-EG2PDKD7.js";
|
|
16
16
|
import {
|
|
17
17
|
renderInstallTerminal
|
|
18
18
|
} from "./chunk-ABF2CGOZ.js";
|
|
19
19
|
import {
|
|
20
20
|
PACKAGE_VERSION
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-HIMFLGLV.js";
|
|
22
22
|
|
|
23
23
|
// src/mcp/stdio-runtime.ts
|
|
24
24
|
import { readFileSync } from "fs";
|
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
} from "./chunk-P7FWOMU7.js";
|
|
51
51
|
import {
|
|
52
52
|
PACKAGE_VERSION
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-HIMFLGLV.js";
|
|
54
54
|
import {
|
|
55
55
|
PUBLIC_ERROR_CODES,
|
|
56
56
|
buildPublicErrorEnvelope,
|
|
@@ -22680,11 +22680,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
22680
22680
|
"type": "object",
|
|
22681
22681
|
"properties": {
|
|
22682
22682
|
"ok": {
|
|
22683
|
-
"type": "boolean"
|
|
22684
|
-
"enum": [
|
|
22685
|
-
true,
|
|
22686
|
-
false
|
|
22687
|
-
]
|
|
22683
|
+
"type": "boolean"
|
|
22688
22684
|
},
|
|
22689
22685
|
"project": {
|
|
22690
22686
|
"type": "object",
|
|
@@ -22752,11 +22748,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
22752
22748
|
"type": "object",
|
|
22753
22749
|
"properties": {
|
|
22754
22750
|
"ok": {
|
|
22755
|
-
"type": "boolean"
|
|
22756
|
-
"enum": [
|
|
22757
|
-
true,
|
|
22758
|
-
false
|
|
22759
|
-
]
|
|
22751
|
+
"type": "boolean"
|
|
22760
22752
|
},
|
|
22761
22753
|
"projects": {
|
|
22762
22754
|
"type": "array",
|
|
@@ -22852,11 +22844,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
22852
22844
|
"type": "object",
|
|
22853
22845
|
"properties": {
|
|
22854
22846
|
"ok": {
|
|
22855
|
-
"type": "boolean"
|
|
22856
|
-
"enum": [
|
|
22857
|
-
true,
|
|
22858
|
-
false
|
|
22859
|
-
]
|
|
22847
|
+
"type": "boolean"
|
|
22860
22848
|
},
|
|
22861
22849
|
"folder": {
|
|
22862
22850
|
"type": "object",
|
|
@@ -22939,11 +22927,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
22939
22927
|
"type": "object",
|
|
22940
22928
|
"properties": {
|
|
22941
22929
|
"ok": {
|
|
22942
|
-
"type": "boolean"
|
|
22943
|
-
"enum": [
|
|
22944
|
-
true,
|
|
22945
|
-
false
|
|
22946
|
-
]
|
|
22930
|
+
"type": "boolean"
|
|
22947
22931
|
},
|
|
22948
22932
|
"folders": {
|
|
22949
22933
|
"type": "array",
|
|
@@ -23101,11 +23085,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23101
23085
|
"type": "object",
|
|
23102
23086
|
"properties": {
|
|
23103
23087
|
"ok": {
|
|
23104
|
-
"type": "boolean"
|
|
23105
|
-
"enum": [
|
|
23106
|
-
true,
|
|
23107
|
-
false
|
|
23108
|
-
]
|
|
23088
|
+
"type": "boolean"
|
|
23109
23089
|
},
|
|
23110
23090
|
"asset": {
|
|
23111
23091
|
"type": "object",
|
|
@@ -23143,6 +23123,10 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23143
23123
|
"bytes": {
|
|
23144
23124
|
"type": "number"
|
|
23145
23125
|
},
|
|
23126
|
+
"sha256": {
|
|
23127
|
+
"type": "string",
|
|
23128
|
+
"pattern": "^[0-9a-f]{64}$"
|
|
23129
|
+
},
|
|
23146
23130
|
"width": {
|
|
23147
23131
|
"type": "number"
|
|
23148
23132
|
},
|
|
@@ -23212,6 +23196,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23212
23196
|
"sourceKind",
|
|
23213
23197
|
"mimeType",
|
|
23214
23198
|
"bytes",
|
|
23199
|
+
"sha256",
|
|
23215
23200
|
"width",
|
|
23216
23201
|
"height",
|
|
23217
23202
|
"projectId",
|
|
@@ -23280,11 +23265,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23280
23265
|
"type": "object",
|
|
23281
23266
|
"properties": {
|
|
23282
23267
|
"ok": {
|
|
23283
|
-
"type": "boolean"
|
|
23284
|
-
"enum": [
|
|
23285
|
-
true,
|
|
23286
|
-
false
|
|
23287
|
-
]
|
|
23268
|
+
"type": "boolean"
|
|
23288
23269
|
},
|
|
23289
23270
|
"asset": {
|
|
23290
23271
|
"type": "object",
|
|
@@ -23322,6 +23303,10 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23322
23303
|
"bytes": {
|
|
23323
23304
|
"type": "number"
|
|
23324
23305
|
},
|
|
23306
|
+
"sha256": {
|
|
23307
|
+
"type": "string",
|
|
23308
|
+
"pattern": "^[0-9a-f]{64}$"
|
|
23309
|
+
},
|
|
23325
23310
|
"width": {
|
|
23326
23311
|
"type": "number"
|
|
23327
23312
|
},
|
|
@@ -23391,6 +23376,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23391
23376
|
"sourceKind",
|
|
23392
23377
|
"mimeType",
|
|
23393
23378
|
"bytes",
|
|
23379
|
+
"sha256",
|
|
23394
23380
|
"width",
|
|
23395
23381
|
"height",
|
|
23396
23382
|
"projectId",
|
|
@@ -23496,11 +23482,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23496
23482
|
"type": "object",
|
|
23497
23483
|
"properties": {
|
|
23498
23484
|
"ok": {
|
|
23499
|
-
"type": "boolean"
|
|
23500
|
-
"enum": [
|
|
23501
|
-
true,
|
|
23502
|
-
false
|
|
23503
|
-
]
|
|
23485
|
+
"type": "boolean"
|
|
23504
23486
|
},
|
|
23505
23487
|
"assets": {
|
|
23506
23488
|
"type": "array",
|
|
@@ -23540,6 +23522,10 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23540
23522
|
"bytes": {
|
|
23541
23523
|
"type": "number"
|
|
23542
23524
|
},
|
|
23525
|
+
"sha256": {
|
|
23526
|
+
"type": "string",
|
|
23527
|
+
"pattern": "^[0-9a-f]{64}$"
|
|
23528
|
+
},
|
|
23543
23529
|
"width": {
|
|
23544
23530
|
"type": "number"
|
|
23545
23531
|
},
|
|
@@ -23609,6 +23595,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23609
23595
|
"sourceKind",
|
|
23610
23596
|
"mimeType",
|
|
23611
23597
|
"bytes",
|
|
23598
|
+
"sha256",
|
|
23612
23599
|
"width",
|
|
23613
23600
|
"height",
|
|
23614
23601
|
"projectId",
|
|
@@ -23739,11 +23726,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23739
23726
|
"type": "object",
|
|
23740
23727
|
"properties": {
|
|
23741
23728
|
"ok": {
|
|
23742
|
-
"type": "boolean"
|
|
23743
|
-
"enum": [
|
|
23744
|
-
true,
|
|
23745
|
-
false
|
|
23746
|
-
]
|
|
23729
|
+
"type": "boolean"
|
|
23747
23730
|
},
|
|
23748
23731
|
"results": {
|
|
23749
23732
|
"type": "array",
|
|
@@ -23786,6 +23769,10 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23786
23769
|
"bytes": {
|
|
23787
23770
|
"type": "number"
|
|
23788
23771
|
},
|
|
23772
|
+
"sha256": {
|
|
23773
|
+
"type": "string",
|
|
23774
|
+
"pattern": "^[0-9a-f]{64}$"
|
|
23775
|
+
},
|
|
23789
23776
|
"width": {
|
|
23790
23777
|
"type": "number"
|
|
23791
23778
|
},
|
|
@@ -23855,6 +23842,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23855
23842
|
"sourceKind",
|
|
23856
23843
|
"mimeType",
|
|
23857
23844
|
"bytes",
|
|
23845
|
+
"sha256",
|
|
23858
23846
|
"width",
|
|
23859
23847
|
"height",
|
|
23860
23848
|
"projectId",
|
|
@@ -23964,11 +23952,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
23964
23952
|
"type": "object",
|
|
23965
23953
|
"properties": {
|
|
23966
23954
|
"ok": {
|
|
23967
|
-
"type": "boolean"
|
|
23968
|
-
"enum": [
|
|
23969
|
-
true,
|
|
23970
|
-
false
|
|
23971
|
-
]
|
|
23955
|
+
"type": "boolean"
|
|
23972
23956
|
},
|
|
23973
23957
|
"asset": {
|
|
23974
23958
|
"type": "object",
|
|
@@ -24006,6 +23990,10 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
24006
23990
|
"bytes": {
|
|
24007
23991
|
"type": "number"
|
|
24008
23992
|
},
|
|
23993
|
+
"sha256": {
|
|
23994
|
+
"type": "string",
|
|
23995
|
+
"pattern": "^[0-9a-f]{64}$"
|
|
23996
|
+
},
|
|
24009
23997
|
"width": {
|
|
24010
23998
|
"type": "number"
|
|
24011
23999
|
},
|
|
@@ -24075,6 +24063,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
24075
24063
|
"sourceKind",
|
|
24076
24064
|
"mimeType",
|
|
24077
24065
|
"bytes",
|
|
24066
|
+
"sha256",
|
|
24078
24067
|
"width",
|
|
24079
24068
|
"height",
|
|
24080
24069
|
"projectId",
|
|
@@ -24139,11 +24128,7 @@ var MEMORY_IMAGE_TOOL_SCHEMAS = [
|
|
|
24139
24128
|
"type": "object",
|
|
24140
24129
|
"properties": {
|
|
24141
24130
|
"ok": {
|
|
24142
|
-
"type": "boolean"
|
|
24143
|
-
"enum": [
|
|
24144
|
-
true,
|
|
24145
|
-
false
|
|
24146
|
-
]
|
|
24131
|
+
"type": "boolean"
|
|
24147
24132
|
},
|
|
24148
24133
|
"deleted": {
|
|
24149
24134
|
"type": "boolean"
|
|
@@ -388,7 +388,7 @@ import {
|
|
|
388
388
|
transcribeMediaUrl,
|
|
389
389
|
transitionAnalyticsExperiment,
|
|
390
390
|
validateAnalyticsRestResponseForRequest
|
|
391
|
-
} from "./chunk-
|
|
391
|
+
} from "./chunk-EG2PDKD7.js";
|
|
392
392
|
import {
|
|
393
393
|
auditImageUrls,
|
|
394
394
|
auditImages,
|
|
@@ -509,7 +509,7 @@ import {
|
|
|
509
509
|
} from "./chunk-GGZEC22A.js";
|
|
510
510
|
import {
|
|
511
511
|
PACKAGE_VERSION
|
|
512
|
-
} from "./chunk-
|
|
512
|
+
} from "./chunk-HIMFLGLV.js";
|
|
513
513
|
import {
|
|
514
514
|
CaptchaError,
|
|
515
515
|
MapsSearchIncompletePageError,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-scraper",
|
|
3
|
-
"version": "0.88.
|
|
3
|
+
"version": "0.88.1",
|
|
4
4
|
"description": "MCP server for MCP Scraper web intelligence tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"ipaddr.js": "^1.9.1",
|
|
137
137
|
"jose": "^6.2.3",
|
|
138
138
|
"marked": "^18.0.7",
|
|
139
|
-
"mcpscraper-memory-tools": "1.
|
|
139
|
+
"mcpscraper-memory-tools": "1.19.0",
|
|
140
140
|
"p-limit": "^7.3.0",
|
|
141
141
|
"papaparse": "^5.4.0",
|
|
142
142
|
"pg": "^8.23.0",
|