mcpscraper-cli 0.9.1 → 0.9.2

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.
Files changed (2) hide show
  1. package/dist/bin/cli.js +8 -9
  2. 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.1";
12
+ var CLI_VERSION = "0.9.2";
13
13
 
14
14
  // src/generated-tools.ts
15
15
  var MCP_TOOL_CATALOG = [
@@ -2089,7 +2089,7 @@ var MCP_TOOL_CATALOG = [
2089
2089
  "name": "create-scheduled-action",
2090
2090
  "category": "schedule",
2091
2091
  "title": "Create Scheduled Action",
2092
- "description": "Create a Credit-metered scheduled action in agent mode (default) or connection_sync mode. Each execution has a 75-Credit base charge; agent model usage is added at 1.5 times OpenRouter's actual reported cost. Agent mode follows the description and writes a result into the target vault. connection_sync deterministically runs approved read-only tools on bound service connections and ingests their data. Cadence 'once' runs a single time then completes permanently. Requires write access to the target vault.",
2092
+ "description": "Create a Credit-metered scheduled action for an active MCP Scraper Starter plan or higher, in agent mode (default) or connection_sync mode. Each execution has a 75-Credit base charge; agent model usage is added at 1.5 times OpenRouter's actual reported cost. Agent mode follows the description and writes a result into the target vault. connection_sync deterministically runs approved read-only tools on bound service connections and ingests their data. Cadence 'once' runs a single time then completes permanently. Requires write access to the target vault.",
2093
2093
  "inputSchema": {
2094
2094
  "type": "object",
2095
2095
  "properties": {
@@ -3063,7 +3063,7 @@ var MCP_TOOL_CATALOG = [
3063
3063
  "name": "get-schedule-link",
3064
3064
  "category": "schedule",
3065
3065
  "title": "Get Schedule Link",
3066
- "description": "Get your durable, bookmarkable link to the hosted Scheduled Actions page \u2014 a login-free UI to create, view, edit, pause, resume, and delete scheduled actions. The embedded secret is shown only once, on first call; it cannot be re-shown, only revoked and reissued via revoke-schedule-link.",
3066
+ "description": "Get your durable, bookmarkable link to the hosted Scheduled Actions page. Requires an active MCP Scraper Starter plan or higher. The embedded secret is shown only once, on first call; it cannot be re-shown, only revoked and reissued via revoke-schedule-link.",
3067
3067
  "inputSchema": {
3068
3068
  "type": "object",
3069
3069
  "properties": {},
@@ -3081,7 +3081,7 @@ var MCP_TOOL_CATALOG = [
3081
3081
  "name": "get-schedule-status",
3082
3082
  "category": "schedule",
3083
3083
  "title": "Get Schedule Status",
3084
- "description": "Get the Credit-metered Scheduled Actions policy. Scheduling is included rather than sold as a separate subscription: each execution has a 75-Credit base charge, and agent model usage is billed at 1.5 times OpenRouter's actual reported cost.",
3084
+ "description": "Get the Credit-metered Scheduled Actions access and billing policy. Scheduling requires an active MCP Scraper Starter plan or higher but has no separate subscription: each execution has a 75-Credit base charge, and agent model usage is billed at 1.5 times OpenRouter's actual reported cost.",
3085
3085
  "inputSchema": {
3086
3086
  "type": "object",
3087
3087
  "properties": {},
@@ -5940,7 +5940,7 @@ var MCP_TOOL_CATALOG = [
5940
5940
  "name": "set-schedule-entitlement",
5941
5941
  "category": "schedule",
5942
5942
  "title": "Set Schedule Entitlement",
5943
- "description": "Legacy migration and account-recovery control for old Scheduled Actions entitlements. New scheduling is Credit-metered and does not require a separate subscription. This admin-only tool may preserve a legacy API-key delegation or recover historical entitlement rows during migration.",
5943
+ "description": "Admin-only scheduled-action credential provisioning and historical-row recovery. Rotate the encrypted delegated MCP Scraper API key without changing legacy enabled/quota fields by omitting those fields. Legacy entitlement values are not runtime access controls; paid-plan access is checked against MCP Scraper directly.",
5944
5944
  "inputSchema": {
5945
5945
  "type": "object",
5946
5946
  "properties": {
@@ -5951,11 +5951,11 @@ var MCP_TOOL_CATALOG = [
5951
5951
  },
5952
5952
  "enabled": {
5953
5953
  "type": "boolean",
5954
- "description": "True to enable scheduled actions for this identity, false on cancel/expire."
5954
+ "description": "Historical entitlement value for migration/recovery only. Omit to preserve the stored value."
5955
5955
  },
5956
5956
  "quotaPerPeriod": {
5957
5957
  "type": "number",
5958
- "description": "Legacy monthly execution quota retained only for historical-row compatibility; it does not price new Credit-metered runs."
5958
+ "description": "Historical monthly execution quota retained only for migration compatibility. Omit to preserve the stored value."
5959
5959
  },
5960
5960
  "mcpScraperApiKey": {
5961
5961
  "type": "string",
@@ -5963,8 +5963,7 @@ var MCP_TOOL_CATALOG = [
5963
5963
  }
5964
5964
  },
5965
5965
  "required": [
5966
- "granteeIdentity",
5967
- "enabled"
5966
+ "granteeIdentity"
5968
5967
  ],
5969
5968
  "additionalProperties": false,
5970
5969
  "$schema": "http://json-schema.org/draft-07/schema#"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpscraper-cli",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
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.1"
21
+ "mcpscraper-sdk": "^0.12.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^22.0.0"