mcpscraper-cli 0.9.2 → 0.9.3
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/dist/bin/cli.js +7 -10
- package/package.json +2 -2
package/dist/bin/cli.js
CHANGED
|
@@ -9,7 +9,7 @@ import { join } from "path";
|
|
|
9
9
|
import { ScraperClient, ScraperApiError } from "mcpscraper-sdk";
|
|
10
10
|
|
|
11
11
|
// src/version.ts
|
|
12
|
-
var CLI_VERSION = "0.9.
|
|
12
|
+
var CLI_VERSION = "0.9.3";
|
|
13
13
|
|
|
14
14
|
// src/generated-tools.ts
|
|
15
15
|
var MCP_TOOL_CATALOG = [
|
|
@@ -1794,7 +1794,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
1794
1794
|
"name": "capture_serp_page_snapshots",
|
|
1795
1795
|
"category": "serpIntelligence",
|
|
1796
1796
|
"title": "SERP Intelligence Page Snapshots",
|
|
1797
|
-
"description": "Capture public ranking pages as SERP Intelligence page snapshots \u2014 persistent page evidence linked to a captured SERP. Provide urls
|
|
1797
|
+
"description": "Capture public ranking pages as SERP Intelligence page snapshots \u2014 persistent page evidence linked to a captured SERP. Provide exactly one of urls or targets; use targets to preserve source metadata. Private IPs, localhost, file, and internal URLs are rejected. Costs 1 Credit per attempted URL.",
|
|
1798
1798
|
"inputSchema": {
|
|
1799
1799
|
"type": "object",
|
|
1800
1800
|
"properties": {
|
|
@@ -1806,7 +1806,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
1806
1806
|
},
|
|
1807
1807
|
"minItems": 1,
|
|
1808
1808
|
"maxItems": 25,
|
|
1809
|
-
"description": "Public HTTP/HTTPS URLs to capture. Do not pass localhost, private IPs, file URLs, or internal admin URLs."
|
|
1809
|
+
"description": "Public HTTP/HTTPS URLs to capture. Provide exactly one of urls or targets. Do not pass localhost, private IPs, file URLs, or internal admin URLs."
|
|
1810
1810
|
},
|
|
1811
1811
|
"targets": {
|
|
1812
1812
|
"type": "array",
|
|
@@ -1843,7 +1843,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
1843
1843
|
},
|
|
1844
1844
|
"minItems": 1,
|
|
1845
1845
|
"maxItems": 25,
|
|
1846
|
-
"description": "Structured targets.
|
|
1846
|
+
"description": "Structured targets. Provide exactly one of targets or urls; use targets when source kind or position should be preserved."
|
|
1847
1847
|
},
|
|
1848
1848
|
"maxConcurrency": {
|
|
1849
1849
|
"type": "integer",
|
|
@@ -1865,9 +1865,6 @@ var MCP_TOOL_CATALOG = [
|
|
|
1865
1865
|
"description": "Include sanitized browser/proxy diagnostics."
|
|
1866
1866
|
}
|
|
1867
1867
|
},
|
|
1868
|
-
"required": [
|
|
1869
|
-
"urls"
|
|
1870
|
-
],
|
|
1871
1868
|
"additionalProperties": false,
|
|
1872
1869
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1873
1870
|
},
|
|
@@ -1883,7 +1880,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
1883
1880
|
"name": "capture_serp_snapshot",
|
|
1884
1881
|
"category": "serpIntelligence",
|
|
1885
1882
|
"title": "SERP Intelligence Snapshot",
|
|
1886
|
-
"description": "Capture a structured SERP Intelligence snapshot of a Google query \u2014 the persistent evidence format used by rank-tracking and comparison pipelines. Split query from location; leave proxyMode unset.",
|
|
1883
|
+
"description": "Capture a structured SERP Intelligence snapshot of a Google query \u2014 the persistent evidence format used by rank-tracking and comparison pipelines. Split query from location; leave proxyMode unset. Costs 4 Credits when headless or 14 if anti-bot escalation requires headful mode; the 14-Credit hold is settled to the mode used. Optional page snapshots add 1 Credit per attempted URL.",
|
|
1887
1884
|
"inputSchema": {
|
|
1888
1885
|
"type": "object",
|
|
1889
1886
|
"properties": {
|
|
@@ -1947,14 +1944,14 @@ var MCP_TOOL_CATALOG = [
|
|
|
1947
1944
|
"includePageSnapshots": {
|
|
1948
1945
|
"type": "boolean",
|
|
1949
1946
|
"default": false,
|
|
1950
|
-
"description": "Also capture ranking-page snapshots for selected SERP URLs."
|
|
1947
|
+
"description": "Also capture ranking-page snapshots for selected SERP URLs. Each attempted snapshot adds 1 Credit."
|
|
1951
1948
|
},
|
|
1952
1949
|
"pageSnapshotLimit": {
|
|
1953
1950
|
"type": "integer",
|
|
1954
1951
|
"minimum": 0,
|
|
1955
1952
|
"maximum": 10,
|
|
1956
1953
|
"default": 0,
|
|
1957
|
-
"description": "Maximum ranking-page snapshots when includePageSnapshots is true."
|
|
1954
|
+
"description": "Maximum ranking-page snapshots when includePageSnapshots is true. This capacity is held up front and unused capacity is refunded."
|
|
1958
1955
|
}
|
|
1959
1956
|
},
|
|
1960
1957
|
"required": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcpscraper-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Command-line interface for mcpscraper.dev and memory.mcpscraper.dev",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"commander": "^12.0.0",
|
|
21
|
-
"mcpscraper-sdk": "^0.12.
|
|
21
|
+
"mcpscraper-sdk": "^0.12.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^22.0.0"
|