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
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
registerMemoryMcpTools,
|
|
8
8
|
registerPaaExtractorMcpTools,
|
|
9
9
|
registerSerpIntelligenceCaptureTools
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-HXNE5GLG.js";
|
|
11
11
|
import "../chunk-R7EETU7Z.js";
|
|
12
12
|
import "../chunk-HPV4VOQX.js";
|
|
13
13
|
import {
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
import "../chunk-XGIPATLV.js";
|
|
17
17
|
import {
|
|
18
18
|
PACKAGE_VERSION
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-YA364G53.js";
|
|
20
20
|
import "../chunk-HL33CGJF.js";
|
|
21
21
|
import "../chunk-M2S27J6Z.js";
|
|
22
22
|
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from "./chunk-XGIPATLV.js";
|
|
18
18
|
import {
|
|
19
19
|
PACKAGE_VERSION
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-YA364G53.js";
|
|
21
21
|
import {
|
|
22
22
|
MC_PER_CREDIT
|
|
23
23
|
} from "./chunk-HL33CGJF.js";
|
|
@@ -8012,11 +8012,12 @@ var TemporalRecallSchema = {
|
|
|
8012
8012
|
var CreateScheduledActionSchema = {
|
|
8013
8013
|
id: "create-scheduled-action",
|
|
8014
8014
|
upstreamName: "createScheduledActionTool",
|
|
8015
|
-
description: "Create a scheduled action
|
|
8015
|
+
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.",
|
|
8016
8016
|
input: {
|
|
8017
8017
|
description: z3.string().min(1).describe("Free-text description of what this action should do each time it runs."),
|
|
8018
8018
|
vault: z3.string().min(1).describe("The vault this action writes its results into. You must already have write access to it."),
|
|
8019
8019
|
cadence: z3.enum(["once", "daily", "weekly", "monthly"]).describe('How often this action runs. "once" fires a single time and then completes.'),
|
|
8020
|
+
executionMode: z3.enum(["agent", "connection_sync"]).default("agent").describe(`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.`),
|
|
8020
8021
|
timeOfDay: z3.string().regex(/^([01]\d|2[0-3]):([0-5]\d)$/).optional().describe("24-hour HH:MM clock time to run at, in the given timezone. Optional \u2014 omit to run at any time during the period (matches prior default behavior)."),
|
|
8021
8022
|
timezone: z3.string().optional().describe('IANA timezone name, e.g. "America/Denver". Only meaningful together with timeOfDay. Defaults to UTC.'),
|
|
8022
8023
|
deployDate: z3.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe('Calendar date (YYYY-MM-DD, in the given timezone) this action should first become eligible to run \u2014 its deployment/start date. For recurring cadences, the first occurrence lands on or after this date; every later occurrence still follows the normal cadence. For cadence "once", this (combined with timeOfDay if given) is exactly what day it fires. Omit to start immediately.')
|
|
@@ -8025,6 +8026,7 @@ var CreateScheduledActionSchema = {
|
|
|
8025
8026
|
ok: z3.boolean().describe("True when the scheduled action was created."),
|
|
8026
8027
|
id: z3.string().optional().describe("The new scheduled action id."),
|
|
8027
8028
|
nextRunAt: z3.string().optional().describe("When it will first run."),
|
|
8029
|
+
executionMode: z3.enum(["agent", "connection_sync"]).optional().describe("The stored execution mode. Defaults to agent when omitted from the request."),
|
|
8028
8030
|
error: z3.string().optional().describe("Human-readable failure reason when ok is false."),
|
|
8029
8031
|
code: z3.string().optional().describe("Machine-readable denial code: not_enabled when no scheduling subscription is active.")
|
|
8030
8032
|
},
|
|
@@ -8099,7 +8101,7 @@ var GetScheduleStatusSchema = {
|
|
|
8099
8101
|
var ListScheduledActionsSchema = {
|
|
8100
8102
|
id: "list-scheduled-actions",
|
|
8101
8103
|
upstreamName: "listScheduledActionsTool",
|
|
8102
|
-
description: "List every scheduled action you own \u2014 active, paused, and completed one-time actions \u2014 with cadence, next run time, and last run status.",
|
|
8104
|
+
description: "List every scheduled action you own \u2014 active, paused, and completed one-time actions \u2014 with execution mode, cadence, next run time, and last run status. connection_sync means deterministic read-only ingestion from bound service connections.",
|
|
8103
8105
|
input: {},
|
|
8104
8106
|
output: {
|
|
8105
8107
|
ok: z3.boolean(),
|
|
@@ -8108,6 +8110,7 @@ var ListScheduledActionsSchema = {
|
|
|
8108
8110
|
description: z3.string(),
|
|
8109
8111
|
vault: z3.string(),
|
|
8110
8112
|
cadence: z3.enum(["once", "daily", "weekly", "monthly"]),
|
|
8113
|
+
executionMode: z3.enum(["agent", "connection_sync"]),
|
|
8111
8114
|
timeOfDay: z3.string().nullable(),
|
|
8112
8115
|
timezone: z3.string(),
|
|
8113
8116
|
status: z3.enum(["active", "paused", "completed"]),
|
|
@@ -8946,4 +8949,4 @@ export {
|
|
|
8946
8949
|
registerMemoryMcpTools,
|
|
8947
8950
|
MemoryMcpToolExecutor
|
|
8948
8951
|
};
|
|
8949
|
-
//# sourceMappingURL=chunk-
|
|
8952
|
+
//# sourceMappingURL=chunk-HXNE5GLG.js.map
|