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 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.0`, SHA-256 `6b4a1ec6a49a71981da0a2a98628244a49274993d62f60c5e7107cec0f9232ff`). 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.
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
 
@@ -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.0";
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 = await import_list.listTool.execute({ ...input, apiKey }, {});
52161
- return { content: [{ type: "text", text: JSON.stringify(result ?? {}) }], structuredContent: result ?? {}, isError: false };
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");