mcp-scraper 0.2.4 → 0.2.5
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 +13 -2
- 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-combined-stdio-server.cjs +1 -1
- package/dist/bin/mcp-scraper-combined-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-scraper-combined-stdio-server.js +4 -4
- package/dist/bin/mcp-scraper-install.cjs +101 -0
- package/dist/bin/mcp-scraper-install.cjs.map +1 -0
- package/dist/bin/mcp-scraper-install.d.cts +1 -0
- package/dist/bin/mcp-scraper-install.d.ts +1 -0
- package/dist/bin/mcp-scraper-install.js +100 -0
- package/dist/bin/mcp-scraper-install.js.map +1 -0
- 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-7DUA4OSB.js → chunk-ENI4DM3S.js} +4 -4
- package/dist/chunk-JDX57SEC.js +7 -0
- package/dist/chunk-JDX57SEC.js.map +1 -0
- package/dist/{chunk-XQGWEM4S.js → chunk-O36HHUKX.js} +2 -2
- package/dist/{server-ADOMF5IM.js → server-Q3WHIS63.js} +12 -12
- package/package.json +3 -2
- package/dist/chunk-JIP4FTR7.js +0 -7
- package/dist/chunk-JIP4FTR7.js.map +0 -1
- /package/dist/{chunk-7DUA4OSB.js.map → chunk-ENI4DM3S.js.map} +0 -0
- /package/dist/{chunk-XQGWEM4S.js.map → chunk-O36HHUKX.js.map} +0 -0
- /package/dist/{server-ADOMF5IM.js.map → server-Q3WHIS63.js.map} +0 -0
package/README.md
CHANGED
|
@@ -11,6 +11,17 @@ MCP Scraper ships three local stdio entrypoints:
|
|
|
11
11
|
- `mcp-scraper` — live web intelligence, SERP, PAA, site extraction, YouTube, Facebook, Maps, directory, 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
13
|
- `mcp-scraper-combined` — one local MCP server that exposes both tool sets. This is the entrypoint used by the MCPB Desktop Extension.
|
|
14
|
+
- `mcp-scraper-install` — a human-facing terminal installer card with the branded ASCII intro and copyable install commands. This command is safe to print because it is not an MCP stdio server.
|
|
15
|
+
|
|
16
|
+
### Terminal installer
|
|
17
|
+
|
|
18
|
+
Run this when you want the designed terminal install experience:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx -y -p mcp-scraper@latest mcp-scraper-install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
It prints the MCP Scraper banner, loaded tool groups, Desktop Extension download, Claude Code command, and Codex config. The MCP server commands stay silent so stdout remains valid JSON-RPC for MCP clients.
|
|
14
25
|
|
|
15
26
|
### Claude Desktop MCPB
|
|
16
27
|
|
|
@@ -20,7 +31,7 @@ Build the branded one-click bundle:
|
|
|
20
31
|
npm run build:mcpb
|
|
21
32
|
```
|
|
22
33
|
|
|
23
|
-
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.
|
|
34
|
+
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.5`, SHA-256 `aa988681b211a4d6183754ffaeb3f512c522e724a45b769c0d2023d68f1a019f`). 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.
|
|
24
35
|
|
|
25
36
|
The MCPB install exposes the same web-intelligence tools as `mcp-scraper` plus all `browser_*` tools from `browser-agent` through one server.
|
|
26
37
|
|
|
@@ -166,7 +177,7 @@ Users who do not update can keep using the tools their local package already adv
|
|
|
166
177
|
|
|
167
178
|
## Branded One-Click Installs
|
|
168
179
|
|
|
169
|
-
Raw `npx` MCP installs are command/config based. They do not provide a reliable user-facing install card, logo, or setup screen inside MCP clients. Do not print marketing text to stdout from an MCP server; stdout is reserved for JSON-RPC protocol messages.
|
|
180
|
+
Raw `npx` MCP server installs are command/config based. They do not provide a reliable user-facing install card, logo, or setup screen inside MCP clients. Use `mcp-scraper-install` for terminal onboarding text. Do not print marketing text to stdout from an MCP server; stdout is reserved for JSON-RPC protocol messages.
|
|
170
181
|
|
|
171
182
|
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.
|
|
172
183
|
|
package/dist/bin/api-server.cjs
CHANGED
|
@@ -17082,7 +17082,7 @@ var PACKAGE_VERSION;
|
|
|
17082
17082
|
var init_version = __esm({
|
|
17083
17083
|
"src/version.ts"() {
|
|
17084
17084
|
"use strict";
|
|
17085
|
-
PACKAGE_VERSION = "0.2.
|
|
17085
|
+
PACKAGE_VERSION = "0.2.5";
|
|
17086
17086
|
}
|
|
17087
17087
|
});
|
|
17088
17088
|
|