mcp-scraper 0.11.0 → 0.12.0
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 +1 -1
- package/dist/bin/api-server.cjs +85 -11
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- 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-install.cjs +1 -1
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +6 -3
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/{chunk-QJBWER2Q.js → chunk-HXNE5GLG.js} +7 -4
- package/dist/{chunk-QJBWER2Q.js.map → chunk-HXNE5GLG.js.map} +1 -1
- package/dist/chunk-YA364G53.js +7 -0
- package/dist/chunk-YA364G53.js.map +1 -0
- package/dist/{server-LRWHUBUN.js → server-TFWBW24U.js} +81 -10
- package/dist/{server-LRWHUBUN.js.map → server-TFWBW24U.js.map} +1 -1
- package/docs/mcp-tool-manifest.generated.json +29 -4
- package/package.json +2 -2
- package/dist/chunk-P2WZLJKQ.js +0 -7
- package/dist/chunk-P2WZLJKQ.js.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-
|
|
2
|
+
"generatedAt": "2026-07-11T20:45:33.125Z",
|
|
3
3
|
"generatedFrom": "dist/bin/mcp-stdio-server.js",
|
|
4
4
|
"serverInfo": {
|
|
5
5
|
"name": "mcp-scraper",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.12.0"
|
|
7
7
|
},
|
|
8
8
|
"counts": {
|
|
9
9
|
"unified_stdio": 153
|
|
@@ -3212,7 +3212,7 @@
|
|
|
3212
3212
|
{
|
|
3213
3213
|
"name": "create-scheduled-action",
|
|
3214
3214
|
"title": "Create Scheduled Action",
|
|
3215
|
-
"description": "Create a scheduled action
|
|
3215
|
+
"description": "Create a scheduled action in agent mode (default) or connection_sync mode. Agent mode asks an agent to follow the description and write a result into the target vault. connection_sync deterministically runs the approved read-only tools on bound service connections and ingests their data; it requires at least one connection to be bound before execution. Cadence 'once' runs a single time then completes permanently. Requires an active scheduling subscription and write access to the target vault.",
|
|
3216
3216
|
"inputSchema": {
|
|
3217
3217
|
"type": "object",
|
|
3218
3218
|
"properties": {
|
|
@@ -3236,6 +3236,15 @@
|
|
|
3236
3236
|
],
|
|
3237
3237
|
"description": "How often this action runs. \"once\" fires a single time and then completes."
|
|
3238
3238
|
},
|
|
3239
|
+
"executionMode": {
|
|
3240
|
+
"type": "string",
|
|
3241
|
+
"enum": [
|
|
3242
|
+
"agent",
|
|
3243
|
+
"connection_sync"
|
|
3244
|
+
],
|
|
3245
|
+
"default": "agent",
|
|
3246
|
+
"description": "How to execute each run. \"agent\" (default) lets an agent follow the description. \"connection_sync\" deterministically ingests data from the schedule's bound connections using only their approved read-only tools; bind at least one connection before it runs."
|
|
3247
|
+
},
|
|
3239
3248
|
"timeOfDay": {
|
|
3240
3249
|
"type": "string",
|
|
3241
3250
|
"pattern": "^([01]\\d|2[0-3]):([0-5]\\d)$",
|
|
@@ -3274,6 +3283,14 @@
|
|
|
3274
3283
|
"type": "string",
|
|
3275
3284
|
"description": "When it will first run."
|
|
3276
3285
|
},
|
|
3286
|
+
"executionMode": {
|
|
3287
|
+
"type": "string",
|
|
3288
|
+
"enum": [
|
|
3289
|
+
"agent",
|
|
3290
|
+
"connection_sync"
|
|
3291
|
+
],
|
|
3292
|
+
"description": "The stored execution mode. Defaults to agent when omitted from the request."
|
|
3293
|
+
},
|
|
3277
3294
|
"error": {
|
|
3278
3295
|
"type": "string",
|
|
3279
3296
|
"description": "Human-readable failure reason when ok is false."
|
|
@@ -5524,7 +5541,7 @@
|
|
|
5524
5541
|
{
|
|
5525
5542
|
"name": "list-scheduled-actions",
|
|
5526
5543
|
"title": "List Scheduled Actions",
|
|
5527
|
-
"description": "List every scheduled action you own — active, paused, and completed one-time actions — with cadence, next run time, and last run status.",
|
|
5544
|
+
"description": "List every scheduled action you own — active, paused, and completed one-time actions — with execution mode, cadence, next run time, and last run status. connection_sync means deterministic read-only ingestion from bound service connections.",
|
|
5528
5545
|
"inputSchema": {
|
|
5529
5546
|
"type": "object",
|
|
5530
5547
|
"properties": {},
|
|
@@ -5559,6 +5576,13 @@
|
|
|
5559
5576
|
"monthly"
|
|
5560
5577
|
]
|
|
5561
5578
|
},
|
|
5579
|
+
"executionMode": {
|
|
5580
|
+
"type": "string",
|
|
5581
|
+
"enum": [
|
|
5582
|
+
"agent",
|
|
5583
|
+
"connection_sync"
|
|
5584
|
+
]
|
|
5585
|
+
},
|
|
5562
5586
|
"timeOfDay": {
|
|
5563
5587
|
"type": [
|
|
5564
5588
|
"string",
|
|
@@ -5600,6 +5624,7 @@
|
|
|
5600
5624
|
"description",
|
|
5601
5625
|
"vault",
|
|
5602
5626
|
"cadence",
|
|
5627
|
+
"executionMode",
|
|
5603
5628
|
"timeOfDay",
|
|
5604
5629
|
"timezone",
|
|
5605
5630
|
"status",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-scraper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "MCP server for MCP Scraper web intelligence tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"hono": "^4.12.18",
|
|
68
68
|
"inngest": "^4.4.0",
|
|
69
69
|
"jose": "^6.2.3",
|
|
70
|
-
"mcpscraper-memory-tools": "^1.
|
|
70
|
+
"mcpscraper-memory-tools": "^1.4.0",
|
|
71
71
|
"p-limit": "^7.3.0",
|
|
72
72
|
"papaparse": "^5.4.0",
|
|
73
73
|
"playwright": "^1.44.0",
|
package/dist/chunk-P2WZLJKQ.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/version.ts"],"sourcesContent":["export const PACKAGE_VERSION = '0.11.0'\n"],"mappings":";AAAO,IAAM,kBAAkB;","names":[]}
|