mcp-scraper 0.51.0 → 0.51.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/README.md +1 -1
- package/dist/bin/api-server.cjs +7 -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 +1 -1
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/{chunk-O63VVCCE.js → chunk-2K4RCBYY.js} +2 -2
- package/dist/chunk-XLUITZUM.js +7 -0
- package/dist/chunk-XLUITZUM.js.map +1 -0
- package/dist/{server-IGIIEHXY.js → server-JR5XPTXS.js} +8 -5
- package/dist/{server-IGIIEHXY.js.map → server-JR5XPTXS.js.map} +1 -1
- package/package.json +1 -1
- package/dist/chunk-73MUQSWC.js +0 -7
- package/dist/chunk-73MUQSWC.js.map +0 -1
- /package/dist/{chunk-O63VVCCE.js.map → chunk-2K4RCBYY.js.map} +0 -0
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Build the branded one-click bundle:
|
|
|
90
90
|
npm run build:mcpb
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
-
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.51.
|
|
93
|
+
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.51.1`, SHA-256 `c460ad09a5fbe65088078feeede7c7f49a3af83b3ed6b5228be4f618e0479425`). 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.
|
|
94
94
|
|
|
95
95
|
The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
|
|
96
96
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -41595,7 +41595,7 @@ var PACKAGE_VERSION;
|
|
|
41595
41595
|
var init_version = __esm({
|
|
41596
41596
|
"src/version.ts"() {
|
|
41597
41597
|
"use strict";
|
|
41598
|
-
PACKAGE_VERSION = "0.51.
|
|
41598
|
+
PACKAGE_VERSION = "0.51.1";
|
|
41599
41599
|
}
|
|
41600
41600
|
});
|
|
41601
41601
|
|
|
@@ -52157,8 +52157,11 @@ function registerReadCutovers() {
|
|
|
52157
52157
|
return { content: [{ type: "text", text: JSON.stringify(result ?? {}) }], structuredContent: result ?? {}, isError: false };
|
|
52158
52158
|
});
|
|
52159
52159
|
registerCutover("listTool", async (input, apiKey) => {
|
|
52160
|
-
const result =
|
|
52161
|
-
|
|
52160
|
+
const result = enrichMemoryResult(
|
|
52161
|
+
"listTool",
|
|
52162
|
+
await import_list.listTool.execute({ ...input, apiKey }, {}) ?? {}
|
|
52163
|
+
);
|
|
52164
|
+
return { content: [{ type: "text", text: JSON.stringify(result) }], structuredContent: result, isError: false };
|
|
52162
52165
|
});
|
|
52163
52166
|
registerCutover("searchTool", async (input, apiKey) => {
|
|
52164
52167
|
const result = await import_search.searchTool.execute({ ...input, apiKey }, {});
|
|
@@ -52254,6 +52257,7 @@ var init_reads = __esm({
|
|
|
52254
52257
|
"src/mcp/memory-cutover/reads.ts"() {
|
|
52255
52258
|
"use strict";
|
|
52256
52259
|
init_memory_inprocess_executor();
|
|
52260
|
+
init_memory_mcp_tool_executor();
|
|
52257
52261
|
import_list_approved_senders = require("mcpscraper-memory-tools/tools/access/list-approved-senders");
|
|
52258
52262
|
import_note_inbox = require("mcpscraper-memory-tools/tools/access/note-inbox");
|
|
52259
52263
|
import_get_message_note = require("mcpscraper-memory-tools/tools/channels/get-message-note");
|