mcp-scraper 0.2.12 → 0.2.13
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 +6 -2
- package/dist/bin/api-server.cjs +1175 -458
- 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 +754 -10
- package/dist/bin/mcp-scraper-cli.cjs.map +1 -1
- package/dist/bin/mcp-scraper-cli.js +50 -9
- package/dist/bin/mcp-scraper-cli.js.map +1 -1
- 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 +3 -3
- package/dist/bin/mcp-scraper-install.cjs +3 -3
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +3 -3
- 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-AYTOCZBS.js +1572 -0
- package/dist/chunk-AYTOCZBS.js.map +1 -0
- package/dist/{chunk-PB7ENA3G.js → chunk-BQTWXY6G.js} +2 -2
- package/dist/{chunk-P5RYXUV7.js → chunk-DKJ2XCY7.js} +2 -2
- package/dist/chunk-RDROUQ4E.js +7 -0
- package/dist/chunk-RDROUQ4E.js.map +1 -0
- package/dist/{server-I2H5WG5I.js → server-LUNOI26E.js} +4 -4
- package/docs/specs/cli-agent-wiring-spec.md +4 -1
- package/docs/specs/seo-cli-growth-roadmap-spec.md +4 -2
- package/package.json +1 -1
- package/dist/chunk-L6IS63WS.js +0 -869
- package/dist/chunk-L6IS63WS.js.map +0 -1
- package/dist/chunk-LK27MYGD.js +0 -7
- package/dist/chunk-LK27MYGD.js.map +0 -1
- /package/dist/{chunk-PB7ENA3G.js.map → chunk-BQTWXY6G.js.map} +0 -0
- /package/dist/{chunk-P5RYXUV7.js.map → chunk-DKJ2XCY7.js.map} +0 -0
- /package/dist/{server-I2H5WG5I.js.map → server-LUNOI26E.js.map} +0 -0
package/README.md
CHANGED
|
@@ -40,10 +40,14 @@ Run local workflow reports:
|
|
|
40
40
|
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow list
|
|
41
41
|
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run agent-packet --keyword "roof repair Denver" --domain example.com
|
|
42
42
|
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run local-competitive-audit --query roofers --state TN --min-pop 100000 --per-city 20 --hydrate-top 5 --reviews 50
|
|
43
|
+
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run map-comparison --query roofers --location "Denver, CO" --per-city 20 --hydrate-top 5
|
|
44
|
+
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run serp-comparison --keyword "roof repair Denver" --domain example.com --extract-top 5
|
|
45
|
+
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run paa-expansion-brief --keyword "roof repair cost" --max-questions 80
|
|
46
|
+
npx -y -p mcp-scraper@latest mcp-scraper-cli workflow run ai-overview-language --keyword "best roof repair company" --domain example.com
|
|
43
47
|
npx -y -p mcp-scraper@latest mcp-scraper-cli report open last
|
|
44
48
|
```
|
|
45
49
|
|
|
46
|
-
Workflow runs save `manifest.json`, `report.html`, CSVs, Markdown, and evidence JSON under `MCP_SCRAPER_OUTPUT_DIR/workflows` or `~/Downloads/mcp-scraper/workflows`.
|
|
50
|
+
Workflow runs save `manifest.json`, `report.html`, CSVs, Markdown, and evidence JSON under `MCP_SCRAPER_OUTPUT_DIR/workflows` or `~/Downloads/mcp-scraper/workflows`. High-level workflow IDs are `directory`, `agent-packet`, `local-competitive-audit`, `map-comparison`, `serp-comparison`, `paa-expansion-brief`, and `ai-overview-language`.
|
|
47
51
|
|
|
48
52
|
Run hosted workflow schedules and hosted run history:
|
|
49
53
|
|
|
@@ -68,7 +72,7 @@ Build the branded one-click bundle:
|
|
|
68
72
|
npm run build:mcpb
|
|
69
73
|
```
|
|
70
74
|
|
|
71
|
-
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.
|
|
75
|
+
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.13`, SHA-256 `93c3c35b6a3315a1b9319761891cf0e805465b1ab19efa0252c7b8f2d9383030`). 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.
|
|
72
76
|
|
|
73
77
|
The MCPB install exposes the same web-intelligence tools as `mcp-scraper` plus all `browser_*` tools from `browser-agent` through one server.
|
|
74
78
|
|