mcp-scraper 0.26.0 → 0.26.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 +6 -6
- 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 +6 -6
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-FQQC5OZJ.js +7 -0
- package/dist/chunk-FQQC5OZJ.js.map +1 -0
- package/dist/{chunk-UMTBCKHH.js → chunk-YMEPX46N.js} +7 -7
- package/dist/chunk-YMEPX46N.js.map +1 -0
- package/dist/{server-H4PPYTOM.js → server-UHDJ5TH5.js} +3 -3
- package/docs/mcp-tool-manifest.generated.json +2 -2
- package/package.json +1 -1
- package/dist/chunk-7PYRJ7CB.js +0 -7
- package/dist/chunk-7PYRJ7CB.js.map +0 -1
- package/dist/chunk-UMTBCKHH.js.map +0 -1
- /package/dist/{server-H4PPYTOM.js.map → server-UHDJ5TH5.js.map} +0 -0
package/README.md
CHANGED
|
@@ -88,7 +88,7 @@ Build the branded one-click bundle:
|
|
|
88
88
|
npm run build:mcpb
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
-
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.26.
|
|
91
|
+
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.26.1`, SHA-256 `905485382791a260e76c51753f927e2c3505784d693292a79748e9e0faaf5ee3`). 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.
|
|
92
92
|
|
|
93
93
|
The MCPB install exposes every tool — web-intelligence plus all `browser_*` tools — through the one `mcp-scraper` server.
|
|
94
94
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -29688,7 +29688,7 @@ var PACKAGE_VERSION;
|
|
|
29688
29688
|
var init_version = __esm({
|
|
29689
29689
|
"src/version.ts"() {
|
|
29690
29690
|
"use strict";
|
|
29691
|
-
PACKAGE_VERSION = "0.26.
|
|
29691
|
+
PACKAGE_VERSION = "0.26.1";
|
|
29692
29692
|
}
|
|
29693
29693
|
});
|
|
29694
29694
|
|
|
@@ -32643,10 +32643,10 @@ var init_http_mcp_tool_executor = __esm({
|
|
|
32643
32643
|
return this.call("/billing/credits", input);
|
|
32644
32644
|
}
|
|
32645
32645
|
listServiceConnections(input) {
|
|
32646
|
-
return this.getJson("/
|
|
32646
|
+
return this.getJson("/schedule-connections");
|
|
32647
32647
|
}
|
|
32648
32648
|
testServiceConnection(input) {
|
|
32649
|
-
return this.call(`/
|
|
32649
|
+
return this.call(`/schedule-connections/${encodeURIComponent(input.connectionId)}/test`, {
|
|
32650
32650
|
...input.providerConfigKey ? { providerConfigKey: input.providerConfigKey } : {}
|
|
32651
32651
|
});
|
|
32652
32652
|
}
|
|
@@ -32663,13 +32663,13 @@ var init_http_mcp_tool_executor = __esm({
|
|
|
32663
32663
|
return this.call("/schedule-connections/actions/zoom/create-meeting", input);
|
|
32664
32664
|
}
|
|
32665
32665
|
readServiceConnection(input) {
|
|
32666
|
-
return this.call("/
|
|
32666
|
+
return this.call("/schedule-connections/actions/read", input);
|
|
32667
32667
|
}
|
|
32668
32668
|
importServiceConnectionToMemory(input) {
|
|
32669
32669
|
return this.call("/schedule-connections/actions/import-memory", input);
|
|
32670
32670
|
}
|
|
32671
32671
|
describeServiceConnectionTool(input) {
|
|
32672
|
-
return this.call("/
|
|
32672
|
+
return this.call("/schedule-connections/actions/describe", input);
|
|
32673
32673
|
}
|
|
32674
32674
|
exportConnectedServiceData(input) {
|
|
32675
32675
|
const timeoutMs = this.httpTimeoutOverrideMs ?? 29e4;
|
|
@@ -32683,7 +32683,7 @@ var init_http_mcp_tool_executor = __esm({
|
|
|
32683
32683
|
return this.call("/schedule-connections/actions/export-download", input);
|
|
32684
32684
|
}
|
|
32685
32685
|
callServiceConnectionAction(input) {
|
|
32686
|
-
return this.call("/
|
|
32686
|
+
return this.call("/schedule-connections/actions/call", input);
|
|
32687
32687
|
}
|
|
32688
32688
|
setScheduledActionConnections(input) {
|
|
32689
32689
|
return this.call(`/schedule-actions/${encodeURIComponent(input.scheduleActionId)}/connections`, {
|