mcp-scraper 0.2.18 → 0.2.19
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 +14 -8
- package/dist/bin/api-server.cjs +1 -1
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/browser-agent-stdio-server.cjs +1 -1
- package/dist/bin/browser-agent-stdio-server.cjs.map +1 -1
- package/dist/bin/browser-agent-stdio-server.js +2 -2
- 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-combined-stdio-server.cjs +105 -1
- package/dist/bin/mcp-scraper-combined-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-scraper-combined-stdio-server.js +18 -3
- package/dist/bin/mcp-scraper-combined-stdio-server.js.map +1 -1
- package/dist/bin/mcp-scraper-install.cjs +6 -4
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +5 -92
- package/dist/bin/mcp-scraper-install.js.map +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-RJMCASQH.js → chunk-4UEVYYDW.js} +2 -2
- package/dist/{chunk-P5PLQU3H.js → chunk-76P4DKWR.js} +2 -2
- package/dist/chunk-MCBOZ2JF.js +96 -0
- package/dist/chunk-MCBOZ2JF.js.map +1 -0
- package/dist/chunk-RU2HZD55.js +7 -0
- package/dist/chunk-RU2HZD55.js.map +1 -0
- package/dist/{server-VVY5K44O.js → server-CRUSZA2Q.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-M5SAUO4K.js +0 -7
- package/dist/chunk-M5SAUO4K.js.map +0 -1
- /package/dist/{chunk-RJMCASQH.js.map → chunk-4UEVYYDW.js.map} +0 -0
- /package/dist/{chunk-P5PLQU3H.js.map → chunk-76P4DKWR.js.map} +0 -0
- /package/dist/{server-VVY5K44O.js.map → server-CRUSZA2Q.js.map} +0 -0
package/README.md
CHANGED
|
@@ -10,19 +10,25 @@ MCP Scraper ships three local stdio entrypoints plus human-facing helper CLIs:
|
|
|
10
10
|
|
|
11
11
|
- `mcp-scraper` — live web intelligence, SERP, PAA, site extraction, YouTube, Facebook ads and organic video transcripts, Maps, directory, rank tracker blueprint, and credit tools.
|
|
12
12
|
- `browser-agent` — an agent-controlled live cloud browser with screenshots, clicks, typing, scrolling, live watch URLs, replay links, and MP4 replay download.
|
|
13
|
-
- `mcp-scraper-combined` — one
|
|
14
|
-
- `mcp-scraper-install` —
|
|
13
|
+
- `mcp-scraper-combined` — one context-aware command. In a human terminal it prints the branded ASCII install card; in an MCP client it runs the combined stdio server with both tool sets. This is the entrypoint used by the MCPB Desktop Extension.
|
|
14
|
+
- `mcp-scraper-install` — explicit alias for the human-facing terminal installer card with the branded ASCII intro and copyable install commands.
|
|
15
15
|
- `mcp-scraper-cli` — a human-facing CLI for setup checks, AI-agent config generation, workflow prompts, local SEO workflow runs, and local HTML reports. This command is safe to print because it is not an MCP stdio server.
|
|
16
16
|
|
|
17
17
|
### Terminal installer
|
|
18
18
|
|
|
19
|
-
Run
|
|
19
|
+
Run the combined command when you want the designed terminal install experience:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx -y -p mcp-scraper@latest mcp-scraper-
|
|
22
|
+
npx -y -p mcp-scraper@latest mcp-scraper-combined
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
In a human terminal, it prints the MCP Scraper banner, loaded tool groups, Desktop Extension download, Claude Code command, and Codex config. When launched by an MCP client, the same command detects non-interactive stdio and writes only valid JSON-RPC to stdout.
|
|
26
|
+
|
|
27
|
+
The explicit installer alias still works:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx -y -p mcp-scraper@latest mcp-scraper-install
|
|
31
|
+
```
|
|
26
32
|
|
|
27
33
|
### Human CLI
|
|
28
34
|
|
|
@@ -81,7 +87,7 @@ Build the branded one-click bundle:
|
|
|
81
87
|
npm run build:mcpb
|
|
82
88
|
```
|
|
83
89
|
|
|
84
|
-
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.2.
|
|
90
|
+
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.2.19`, SHA-256 `b324b7bb2a0dca06978d436da0f69a16ad8b40e91cdc76e19547de2b078b66d3`). 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.
|
|
85
91
|
|
|
86
92
|
The MCPB install exposes the same web-intelligence tools as `mcp-scraper` plus all `browser_*` tools from `browser-agent` through one server.
|
|
87
93
|
|
|
@@ -223,7 +229,7 @@ Recommended config for update-friendly installs:
|
|
|
223
229
|
npx -y -p mcp-scraper@latest mcp-scraper-combined
|
|
224
230
|
```
|
|
225
231
|
|
|
226
|
-
This is
|
|
232
|
+
This is context-aware: in a normal terminal it prints the visible installer and ASCII card; in an MCP client it runs as the silent stdio server. Use `--stdio` or `MCP_SCRAPER_FORCE_STDIO=1` if you need to force server mode from a terminal.
|
|
227
233
|
|
|
228
234
|
Split-server config:
|
|
229
235
|
|
|
@@ -243,7 +249,7 @@ Users who do not update can keep using the tools their local package already adv
|
|
|
243
249
|
|
|
244
250
|
## Branded One-Click Installs
|
|
245
251
|
|
|
246
|
-
Raw `npx` MCP server installs are command/config based.
|
|
252
|
+
Raw `npx` MCP server installs are command/config based. `mcp-scraper-combined` is context-aware: terminal TTY prints onboarding text and the ASCII card; MCP-client stdio pipes stay protocol-clean. Do not print marketing text to stdout from an active MCP stdio session; stdout is reserved for JSON-RPC protocol messages.
|
|
247
253
|
|
|
248
254
|
For a branded Claude Desktop install, package MCP Scraper as an MCPB Desktop Extension. The repository now builds one combined MCPB bundle with a generated icon, `manifest.json`, bundled runtime dependencies, and `user_config` fields for API-key setup, API URL, and output folder.
|
|
249
255
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -20433,7 +20433,7 @@ var PACKAGE_VERSION;
|
|
|
20433
20433
|
var init_version = __esm({
|
|
20434
20434
|
"src/version.ts"() {
|
|
20435
20435
|
"use strict";
|
|
20436
|
-
PACKAGE_VERSION = "0.2.
|
|
20436
|
+
PACKAGE_VERSION = "0.2.19";
|
|
20437
20437
|
}
|
|
20438
20438
|
});
|
|
20439
20439
|
|