mcp-scraper 0.85.0 → 0.86.0
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 +23 -1
- package/README.md +2 -2
- package/dist/{analytics-repository-4VZQ4TKW.js → analytics-repository-GGJJCVVP.js} +9 -1
- package/dist/bin/api-server.js +3 -3
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-core.js +5 -5
- package/dist/bin/mcp-scraper-install.js +2 -2
- package/dist/bin/mcp-stdio-server.js +5 -5
- package/dist/{chunk-RHAOKXQK.js → chunk-36EAKRR6.js} +1 -1
- package/dist/{chunk-WN7N4ESQ.js → chunk-7523VOQT.js} +1 -1
- package/dist/{chunk-W4IY6CB4.js → chunk-FBB6DEUV.js} +5688 -4
- package/dist/{chunk-C7OKENCR.js → chunk-KQWVJOVR.js} +1 -1
- package/dist/{chunk-X5HRAAQM.js → chunk-NKRO2SUO.js} +3 -3
- package/dist/{chunk-2ZDYUTOZ.js → chunk-QKWNEMGH.js} +3 -3
- package/dist/{chunk-W3SGF7GX.js → chunk-WFGAR4BZ.js} +1 -1
- package/dist/{chunk-TLRJV4SL.js → chunk-X623GTBV.js} +427 -155
- package/dist/{extract-bundle-NSMGHEG6.js → extract-bundle-FALNLKYY.js} +2 -2
- package/dist/{gmail-service-BTRAHGJS.js → gmail-service-BUSU4BVX.js} +2 -2
- package/dist/{server-EOPETL7Q.js → server-OZBTZIDZ.js} +1320 -645
- package/dist/{site-extract-repository-DWU52BRQ.js → site-extract-repository-S5FYNFDY.js} +2 -2
- package/dist/{worker-5A375BGN.js → worker-OQSFSLNG.js} +1 -1
- package/package.json +15 -4
|
@@ -30,9 +30,9 @@ import {
|
|
|
30
30
|
setExtractJobTotal,
|
|
31
31
|
settleExtractJob,
|
|
32
32
|
terminalExtractJobStatus
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-KQWVJOVR.js";
|
|
34
34
|
import "./chunk-DNM65UCK.js";
|
|
35
|
-
import "./chunk-
|
|
35
|
+
import "./chunk-NKRO2SUO.js";
|
|
36
36
|
import "./chunk-YXNDOQXN.js";
|
|
37
37
|
export {
|
|
38
38
|
XRAY_ENTITLED_EXTRACT_BILLING_CLASS,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-scraper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.0",
|
|
4
4
|
"description": "MCP server for MCP Scraper web intelligence tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -37,10 +37,12 @@
|
|
|
37
37
|
],
|
|
38
38
|
"repository": {
|
|
39
39
|
"type": "git",
|
|
40
|
-
"url": "https://github.com/VilovietaSEO/mcp-scraper.git"
|
|
40
|
+
"url": "git+https://github.com/VilovietaSEO/mcp-scraper.git"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://mcpscraper.dev",
|
|
43
|
-
"bugs":
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/VilovietaSEO/mcp-scraper/issues"
|
|
45
|
+
},
|
|
44
46
|
"scripts": {
|
|
45
47
|
"build": "tsup",
|
|
46
48
|
"build:md": "node scripts/build-md-mirror.mjs",
|
|
@@ -51,6 +53,8 @@
|
|
|
51
53
|
"build:blog": "node scripts/run-ts-sandbox-safe.mjs scripts/build-blog.ts",
|
|
52
54
|
"mcp:manifest": "node scripts/run-ts-sandbox-safe.mjs scripts/generate-mcp-tool-manifest.ts",
|
|
53
55
|
"contracts:memory": "node --import tsx scripts/generate-memory-tool-contract.ts",
|
|
56
|
+
"contracts:memory-governed": "node --import tsx scripts/generate-governed-memory-mcp-schemas.ts",
|
|
57
|
+
"verify:crm-authority": "node --import tsx scripts/verify-crm-authority-boundary.ts",
|
|
54
58
|
"contracts:openapi": "node --import tsx scripts/generate-personal-assistant-openapi.ts",
|
|
55
59
|
"contracts:assistant": "npm run mcp:manifest && npm run contracts:memory && npm run contracts:openapi",
|
|
56
60
|
"contracts:assistant:verify": "node --import tsx scripts/verify-personal-assistant-contract.ts",
|
|
@@ -174,5 +178,12 @@
|
|
|
174
178
|
},
|
|
175
179
|
"engines": {
|
|
176
180
|
"node": ">=20.18.1"
|
|
177
|
-
}
|
|
181
|
+
},
|
|
182
|
+
"directories": {
|
|
183
|
+
"doc": "docs",
|
|
184
|
+
"test": "tests"
|
|
185
|
+
},
|
|
186
|
+
"keywords": [],
|
|
187
|
+
"author": "",
|
|
188
|
+
"license": "ISC"
|
|
178
189
|
}
|