mcp-scraper 0.24.0 → 0.25.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 +2 -2
- package/dist/bin/api-server.cjs +151 -55
- 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 +150 -54
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/{chunk-SUPUHPJS.js → chunk-NC37L5RW.js} +151 -55
- package/dist/chunk-NC37L5RW.js.map +1 -0
- package/dist/chunk-UELJZCUC.js +7 -0
- package/dist/chunk-UELJZCUC.js.map +1 -0
- package/dist/{server-I5U3OUZZ.js → server-PILR3U5E.js} +3 -3
- package/docs/adr/0002-hybrid-smart-rag-vault-retrieval.md +62 -0
- package/docs/adr/README.md +1 -0
- package/docs/mcp-tool-manifest.generated.json +549 -53
- package/package.json +2 -2
- package/dist/chunk-CDLHUCMT.js +0 -7
- package/dist/chunk-CDLHUCMT.js.map +0 -1
- package/dist/chunk-SUPUHPJS.js.map +0 -1
- /package/dist/{server-I5U3OUZZ.js.map → server-PILR3U5E.js.map} +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-16T22:
|
|
2
|
+
"generatedAt": "2026-07-16T22:35:30.875Z",
|
|
3
3
|
"generatedFrom": "dist/bin/mcp-stdio-server.js",
|
|
4
4
|
"serverInfo": {
|
|
5
5
|
"name": "mcp-scraper",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.25.0"
|
|
7
7
|
},
|
|
8
8
|
"counts": {
|
|
9
|
-
"unified_stdio":
|
|
9
|
+
"unified_stdio": 162
|
|
10
10
|
},
|
|
11
11
|
"surfaces": {
|
|
12
12
|
"unified_stdio": [
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"browser_screenshot",
|
|
53
53
|
"browser_scroll",
|
|
54
54
|
"browser_type",
|
|
55
|
+
"bulk-delete-notes",
|
|
55
56
|
"call_service_connection_action",
|
|
56
57
|
"capture_serp_page_snapshots",
|
|
57
58
|
"capture_serp_snapshot",
|
|
@@ -143,6 +144,7 @@
|
|
|
143
144
|
"search_serp",
|
|
144
145
|
"set_scheduled_action_connections",
|
|
145
146
|
"set-agent-identity",
|
|
147
|
+
"set-schedule-defaults",
|
|
146
148
|
"set-schedule-entitlement",
|
|
147
149
|
"slack_send_message",
|
|
148
150
|
"storage-usage",
|
|
@@ -4199,6 +4201,156 @@
|
|
|
4199
4201
|
"taskSupport": "forbidden"
|
|
4200
4202
|
}
|
|
4201
4203
|
},
|
|
4204
|
+
{
|
|
4205
|
+
"name": "bulk-delete-notes",
|
|
4206
|
+
"title": "Bulk Delete Notes",
|
|
4207
|
+
"description": "Delete every note in one vault matching all given filters (ANDed) plus an optional tag match (ANY of the given tags) — at least one filter or tag is required; there is no unfiltered delete-all here (use delete-vault for that). Defaults to dryRun: true, previewing the match count and a sample of up to 20 matching notes without deleting anything. Pass dryRun: false to actually delete. DESTRUCTIVE and not recoverable when dryRun is false. Requires write scope. Refuses secure vaults (not indexed, filtering is meaningless there).",
|
|
4208
|
+
"inputSchema": {
|
|
4209
|
+
"type": "object",
|
|
4210
|
+
"properties": {
|
|
4211
|
+
"vault": {
|
|
4212
|
+
"type": "string",
|
|
4213
|
+
"description": "Vault to delete from. Optional; defaults to the session active vault, then the first vault the caller is entitled to."
|
|
4214
|
+
},
|
|
4215
|
+
"filters": {
|
|
4216
|
+
"type": "array",
|
|
4217
|
+
"items": {
|
|
4218
|
+
"type": "object",
|
|
4219
|
+
"properties": {
|
|
4220
|
+
"column": {
|
|
4221
|
+
"type": "string",
|
|
4222
|
+
"enum": [
|
|
4223
|
+
"path",
|
|
4224
|
+
"title",
|
|
4225
|
+
"kind",
|
|
4226
|
+
"source",
|
|
4227
|
+
"captured_at",
|
|
4228
|
+
"created_at",
|
|
4229
|
+
"updated_at",
|
|
4230
|
+
"revision"
|
|
4231
|
+
],
|
|
4232
|
+
"description": "Note column to filter on."
|
|
4233
|
+
},
|
|
4234
|
+
"op": {
|
|
4235
|
+
"type": "string",
|
|
4236
|
+
"enum": [
|
|
4237
|
+
"eq",
|
|
4238
|
+
"neq",
|
|
4239
|
+
"gt",
|
|
4240
|
+
"gte",
|
|
4241
|
+
"lt",
|
|
4242
|
+
"lte",
|
|
4243
|
+
"like",
|
|
4244
|
+
"prefix",
|
|
4245
|
+
"in"
|
|
4246
|
+
],
|
|
4247
|
+
"description": "\"prefix\" anchors to the start of the value only (e.g. path prefix \"Mastra/opt-\"); \"like\" matches anywhere in the value; \"in\" requires an array value."
|
|
4248
|
+
},
|
|
4249
|
+
"value": {
|
|
4250
|
+
"description": "Value to compare against. For \"in\", pass an array."
|
|
4251
|
+
}
|
|
4252
|
+
},
|
|
4253
|
+
"required": [
|
|
4254
|
+
"column",
|
|
4255
|
+
"op"
|
|
4256
|
+
],
|
|
4257
|
+
"additionalProperties": false
|
|
4258
|
+
},
|
|
4259
|
+
"default": [],
|
|
4260
|
+
"description": "Filters to AND together. At least one of filters/tags is required."
|
|
4261
|
+
},
|
|
4262
|
+
"tags": {
|
|
4263
|
+
"type": "array",
|
|
4264
|
+
"items": {
|
|
4265
|
+
"type": "string"
|
|
4266
|
+
},
|
|
4267
|
+
"description": "Match notes carrying ANY of these tags (ORed among themselves, ANDed with filters). At least one of filters/tags is required."
|
|
4268
|
+
},
|
|
4269
|
+
"dryRun": {
|
|
4270
|
+
"type": "boolean",
|
|
4271
|
+
"default": true,
|
|
4272
|
+
"description": "When true (default), previews matches without deleting anything. Pass false to actually delete."
|
|
4273
|
+
}
|
|
4274
|
+
},
|
|
4275
|
+
"additionalProperties": false,
|
|
4276
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4277
|
+
},
|
|
4278
|
+
"outputSchema": {
|
|
4279
|
+
"type": "object",
|
|
4280
|
+
"properties": {
|
|
4281
|
+
"ok": {
|
|
4282
|
+
"type": "boolean",
|
|
4283
|
+
"description": "True on success; false on auth/scope/validation error."
|
|
4284
|
+
},
|
|
4285
|
+
"vault": {
|
|
4286
|
+
"type": "string",
|
|
4287
|
+
"description": "The vault operated on (after defaulting). Present when ok is true."
|
|
4288
|
+
},
|
|
4289
|
+
"dryRun": {
|
|
4290
|
+
"type": "boolean",
|
|
4291
|
+
"description": "Echoes whether this call was a preview or a real delete."
|
|
4292
|
+
},
|
|
4293
|
+
"matchCount": {
|
|
4294
|
+
"type": "number",
|
|
4295
|
+
"description": "Number of notes matching the filters. Present on a dry run."
|
|
4296
|
+
},
|
|
4297
|
+
"sample": {
|
|
4298
|
+
"type": "array",
|
|
4299
|
+
"items": {
|
|
4300
|
+
"type": "object",
|
|
4301
|
+
"properties": {
|
|
4302
|
+
"path": {
|
|
4303
|
+
"type": "string"
|
|
4304
|
+
},
|
|
4305
|
+
"title": {
|
|
4306
|
+
"type": "string"
|
|
4307
|
+
},
|
|
4308
|
+
"updatedAt": {
|
|
4309
|
+
"type": "string"
|
|
4310
|
+
}
|
|
4311
|
+
},
|
|
4312
|
+
"required": [
|
|
4313
|
+
"path",
|
|
4314
|
+
"title",
|
|
4315
|
+
"updatedAt"
|
|
4316
|
+
],
|
|
4317
|
+
"additionalProperties": false
|
|
4318
|
+
},
|
|
4319
|
+
"description": "Up to 20 matching notes, most-recently-updated first. Present on a dry run."
|
|
4320
|
+
},
|
|
4321
|
+
"deleted": {
|
|
4322
|
+
"type": "number",
|
|
4323
|
+
"description": "Number of notes actually deleted. Present when dryRun is false."
|
|
4324
|
+
},
|
|
4325
|
+
"deletedPaths": {
|
|
4326
|
+
"type": "array",
|
|
4327
|
+
"items": {
|
|
4328
|
+
"type": "string"
|
|
4329
|
+
},
|
|
4330
|
+
"description": "Paths of the deleted notes. Present when dryRun is false."
|
|
4331
|
+
},
|
|
4332
|
+
"error": {
|
|
4333
|
+
"type": "string",
|
|
4334
|
+
"description": "Human-readable failure reason when ok is false."
|
|
4335
|
+
}
|
|
4336
|
+
},
|
|
4337
|
+
"required": [
|
|
4338
|
+
"ok"
|
|
4339
|
+
],
|
|
4340
|
+
"additionalProperties": false,
|
|
4341
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4342
|
+
},
|
|
4343
|
+
"annotations": {
|
|
4344
|
+
"title": "Bulk Delete Notes",
|
|
4345
|
+
"readOnlyHint": false,
|
|
4346
|
+
"destructiveHint": true,
|
|
4347
|
+
"idempotentHint": false,
|
|
4348
|
+
"openWorldHint": false
|
|
4349
|
+
},
|
|
4350
|
+
"execution": {
|
|
4351
|
+
"taskSupport": "forbidden"
|
|
4352
|
+
}
|
|
4353
|
+
},
|
|
4202
4354
|
{
|
|
4203
4355
|
"name": "call_service_connection_action",
|
|
4204
4356
|
"title": "Run Connected Service Action",
|
|
@@ -4997,7 +5149,7 @@
|
|
|
4997
5149
|
{
|
|
4998
5150
|
"name": "create-scheduled-action",
|
|
4999
5151
|
"title": "Create Scheduled Action",
|
|
5000
|
-
"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. Google Search Console syncs also upsert a typed tenant-owned performance table for exact filtering with table-query; discover its tableName by calling list_service_connections after the first successful run. Cadence 'once' runs a single time then completes permanently. Requires write access to the target vault.",
|
|
5152
|
+
"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 the approved read-only tools on bound service connections and ingests their data; it requires at least one connection to be bound before execution. Google Search Console syncs also upsert a typed tenant-owned performance table for exact filtering with table-query; discover its tableName by calling list_service_connections after the first successful run. Cadence 'once' runs a single time then completes permanently. Requires write access to the target vault.",
|
|
5001
5153
|
"inputSchema": {
|
|
5002
5154
|
"type": "object",
|
|
5003
5155
|
"properties": {
|
|
@@ -5037,7 +5189,7 @@
|
|
|
5037
5189
|
},
|
|
5038
5190
|
"timezone": {
|
|
5039
5191
|
"type": "string",
|
|
5040
|
-
"description": "IANA timezone name, e.g. \"America/Denver\". Only meaningful together with timeOfDay.
|
|
5192
|
+
"description": "IANA timezone name, e.g. \"America/Denver\". Only meaningful together with timeOfDay or deployDate. Omit to use the account's default timezone (set via set-schedule-defaults), falling back to UTC."
|
|
5041
5193
|
},
|
|
5042
5194
|
"deployDate": {
|
|
5043
5195
|
"type": "string",
|
|
@@ -8708,7 +8860,7 @@
|
|
|
8708
8860
|
{
|
|
8709
8861
|
"name": "get-schedule-status",
|
|
8710
8862
|
"title": "Get Schedule Status",
|
|
8711
|
-
"description": "Get the Credit-metered Scheduled Actions access and
|
|
8863
|
+
"description": "Get the Credit-metered Scheduled Actions access, billing policy, and default timezone. 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.",
|
|
8712
8864
|
"inputSchema": {
|
|
8713
8865
|
"type": "object",
|
|
8714
8866
|
"properties": {},
|
|
@@ -11222,12 +11374,13 @@
|
|
|
11222
11374
|
{
|
|
11223
11375
|
"name": "list-memory-tags",
|
|
11224
11376
|
"title": "List Memory Tags",
|
|
11225
|
-
"description": "List the live canonical tag vocabulary, aliases, usage counts, and per-vault distribution.
|
|
11377
|
+
"description": "List the complete live canonical tag vocabulary, aliases, usage counts, and per-vault distribution. Always call this before proposing, resolving, or writing tags so the AI can reuse existing concepts and add only central, reusable concepts that are genuinely missing.",
|
|
11226
11378
|
"inputSchema": {
|
|
11227
11379
|
"type": "object",
|
|
11228
11380
|
"properties": {
|
|
11229
11381
|
"includeDeprecated": {
|
|
11230
|
-
"type": "boolean"
|
|
11382
|
+
"type": "boolean",
|
|
11383
|
+
"description": "Include deprecated tags as well as active tags. Defaults true so the AI sees the complete vocabulary; pass false only for an active-only display."
|
|
11231
11384
|
}
|
|
11232
11385
|
},
|
|
11233
11386
|
"additionalProperties": false,
|
|
@@ -12458,7 +12611,7 @@
|
|
|
12458
12611
|
{
|
|
12459
12612
|
"name": "memory-capture",
|
|
12460
12613
|
"title": "Capture Governed Memory",
|
|
12461
|
-
"description": "Strict normal-create path for durable memory.
|
|
12614
|
+
"description": "Strict normal-create path for durable memory. Before capture, list the complete tag vocabulary, call prepare-memory-write, run hybrid memory-search for related notes, and read the strongest link candidates. This tool refuses incomplete notes, writes through memory-put, registers canonical tags, and verifies persisted content and props. Reserve memory-put for low-level migrations or deliberate edits.",
|
|
12462
12615
|
"inputSchema": {
|
|
12463
12616
|
"type": "object",
|
|
12464
12617
|
"properties": {
|
|
@@ -12553,6 +12706,27 @@
|
|
|
12553
12706
|
"type": "string",
|
|
12554
12707
|
"description": "Explicit sub-folder within the vault; overrides routing-derived folder."
|
|
12555
12708
|
},
|
|
12709
|
+
"script_links": {
|
|
12710
|
+
"type": "array",
|
|
12711
|
+
"items": {
|
|
12712
|
+
"type": "string"
|
|
12713
|
+
},
|
|
12714
|
+
"description": "Skills only: one or more Obsidian/internal paths under scripts/."
|
|
12715
|
+
},
|
|
12716
|
+
"reference_links": {
|
|
12717
|
+
"type": "array",
|
|
12718
|
+
"items": {
|
|
12719
|
+
"type": "string"
|
|
12720
|
+
},
|
|
12721
|
+
"description": "Skills only: optional Obsidian/internal paths under references/."
|
|
12722
|
+
},
|
|
12723
|
+
"template_links": {
|
|
12724
|
+
"type": "array",
|
|
12725
|
+
"items": {
|
|
12726
|
+
"type": "string"
|
|
12727
|
+
},
|
|
12728
|
+
"description": "Skills only: optional Obsidian/internal paths under templates/."
|
|
12729
|
+
},
|
|
12556
12730
|
"parentMessageId": {
|
|
12557
12731
|
"type": "string",
|
|
12558
12732
|
"description": "Channel messages only: the path of the top-level message this is a reply to. Absent on top-level messages."
|
|
@@ -12963,6 +13137,27 @@
|
|
|
12963
13137
|
"type": "string",
|
|
12964
13138
|
"description": "Explicit sub-folder within the vault; overrides routing-derived folder."
|
|
12965
13139
|
},
|
|
13140
|
+
"script_links": {
|
|
13141
|
+
"type": "array",
|
|
13142
|
+
"items": {
|
|
13143
|
+
"type": "string"
|
|
13144
|
+
},
|
|
13145
|
+
"description": "Skills only: one or more Obsidian/internal paths under scripts/."
|
|
13146
|
+
},
|
|
13147
|
+
"reference_links": {
|
|
13148
|
+
"type": "array",
|
|
13149
|
+
"items": {
|
|
13150
|
+
"type": "string"
|
|
13151
|
+
},
|
|
13152
|
+
"description": "Skills only: optional Obsidian/internal paths under references/."
|
|
13153
|
+
},
|
|
13154
|
+
"template_links": {
|
|
13155
|
+
"type": "array",
|
|
13156
|
+
"items": {
|
|
13157
|
+
"type": "string"
|
|
13158
|
+
},
|
|
13159
|
+
"description": "Skills only: optional Obsidian/internal paths under templates/."
|
|
13160
|
+
},
|
|
12966
13161
|
"parentMessageId": {
|
|
12967
13162
|
"type": "string",
|
|
12968
13163
|
"description": "Channel messages only: the path of the top-level message this is a reply to. Absent on top-level messages."
|
|
@@ -13492,6 +13687,27 @@
|
|
|
13492
13687
|
"type": "string",
|
|
13493
13688
|
"description": "Explicit sub-folder within the vault; overrides routing-derived folder."
|
|
13494
13689
|
},
|
|
13690
|
+
"script_links": {
|
|
13691
|
+
"type": "array",
|
|
13692
|
+
"items": {
|
|
13693
|
+
"type": "string"
|
|
13694
|
+
},
|
|
13695
|
+
"description": "Skills only: one or more Obsidian/internal paths under scripts/."
|
|
13696
|
+
},
|
|
13697
|
+
"reference_links": {
|
|
13698
|
+
"type": "array",
|
|
13699
|
+
"items": {
|
|
13700
|
+
"type": "string"
|
|
13701
|
+
},
|
|
13702
|
+
"description": "Skills only: optional Obsidian/internal paths under references/."
|
|
13703
|
+
},
|
|
13704
|
+
"template_links": {
|
|
13705
|
+
"type": "array",
|
|
13706
|
+
"items": {
|
|
13707
|
+
"type": "string"
|
|
13708
|
+
},
|
|
13709
|
+
"description": "Skills only: optional Obsidian/internal paths under templates/."
|
|
13710
|
+
},
|
|
13495
13711
|
"parentMessageId": {
|
|
13496
13712
|
"type": "string",
|
|
13497
13713
|
"description": "Channel messages only: the path of the top-level message this is a reply to. Absent on top-level messages."
|
|
@@ -13696,33 +13912,141 @@
|
|
|
13696
13912
|
},
|
|
13697
13913
|
{
|
|
13698
13914
|
"name": "memory-search",
|
|
13699
|
-
"title": "
|
|
13700
|
-
"description": "
|
|
13915
|
+
"title": "Hybrid Smart RAG Memory Search",
|
|
13916
|
+
"description": "Default Smart RAG search across accessible memory. Form 2-4 focused query variants, combine semantic matches with exact vault/tag/date/kind/type/metadata filters, expand one bounded hop of outgoing links and backlinks around strong seeds, then rerank. Defaults: retrieve/fuse 50 candidates, 8 graph seeds, 5 neighbors per seed, rerank to 30. Graph neighbors are candidates, never automatic winners or links. Before tagging or writing, also call list-memory-tags to inspect the complete vocabulary and reuse existing tags; read strong related notes before selecting links.",
|
|
13701
13917
|
"inputSchema": {
|
|
13702
13918
|
"type": "object",
|
|
13703
13919
|
"properties": {
|
|
13704
13920
|
"vault": {
|
|
13705
13921
|
"type": "string",
|
|
13706
|
-
"description": "
|
|
13922
|
+
"description": "Exact logical vault handle to search. Omit to search every entitled vault."
|
|
13707
13923
|
},
|
|
13708
13924
|
"query": {
|
|
13709
13925
|
"type": "string",
|
|
13710
13926
|
"minLength": 1,
|
|
13711
|
-
"description": "
|
|
13927
|
+
"description": "A focused semantic reformulation of the request."
|
|
13712
13928
|
},
|
|
13713
13929
|
"userMessage": {
|
|
13714
13930
|
"type": "string",
|
|
13715
|
-
"description": "
|
|
13931
|
+
"description": "Original human wording. Used as a distinct query variant when useful and logged for quality review."
|
|
13932
|
+
},
|
|
13933
|
+
"queries": {
|
|
13934
|
+
"type": "array",
|
|
13935
|
+
"items": {
|
|
13936
|
+
"type": "string",
|
|
13937
|
+
"minLength": 1
|
|
13938
|
+
},
|
|
13939
|
+
"minItems": 2,
|
|
13940
|
+
"maxItems": 4,
|
|
13941
|
+
"description": "Caller-provided focused query variants. The planner deduplicates these with query, original wording, and tag/entity terms."
|
|
13942
|
+
},
|
|
13943
|
+
"entities": {
|
|
13944
|
+
"type": "array",
|
|
13945
|
+
"items": {
|
|
13946
|
+
"type": "string",
|
|
13947
|
+
"minLength": 1
|
|
13948
|
+
},
|
|
13949
|
+
"maxItems": 20,
|
|
13950
|
+
"description": "Named entities or exact terms used to form a focused query variant."
|
|
13951
|
+
},
|
|
13952
|
+
"tags": {
|
|
13953
|
+
"type": "array",
|
|
13954
|
+
"items": {
|
|
13955
|
+
"type": "string",
|
|
13956
|
+
"minLength": 1
|
|
13957
|
+
},
|
|
13958
|
+
"maxItems": 20,
|
|
13959
|
+
"description": "Exact canonical tags used for tag-channel retrieval and filtering."
|
|
13960
|
+
},
|
|
13961
|
+
"tagMode": {
|
|
13962
|
+
"type": "string",
|
|
13963
|
+
"enum": [
|
|
13964
|
+
"any",
|
|
13965
|
+
"all"
|
|
13966
|
+
],
|
|
13967
|
+
"description": "Whether a note must match any or all supplied tags. Default any."
|
|
13968
|
+
},
|
|
13969
|
+
"kind": {
|
|
13970
|
+
"type": "string",
|
|
13971
|
+
"enum": [
|
|
13972
|
+
"note",
|
|
13973
|
+
"library",
|
|
13974
|
+
"capture",
|
|
13975
|
+
"decision",
|
|
13976
|
+
"message"
|
|
13977
|
+
],
|
|
13978
|
+
"description": "Exact persisted note-kind filter."
|
|
13979
|
+
},
|
|
13980
|
+
"type": {
|
|
13981
|
+
"type": "string",
|
|
13982
|
+
"minLength": 1,
|
|
13983
|
+
"description": "Exact props.type filter."
|
|
13984
|
+
},
|
|
13985
|
+
"dateFrom": {
|
|
13986
|
+
"type": "string",
|
|
13987
|
+
"format": "date-time",
|
|
13988
|
+
"description": "Inclusive lower bound for note updatedAt."
|
|
13989
|
+
},
|
|
13990
|
+
"dateTo": {
|
|
13991
|
+
"type": "string",
|
|
13992
|
+
"format": "date-time",
|
|
13993
|
+
"description": "Inclusive upper bound for note updatedAt."
|
|
13994
|
+
},
|
|
13995
|
+
"metadata": {
|
|
13996
|
+
"type": "object",
|
|
13997
|
+
"additionalProperties": {
|
|
13998
|
+
"type": [
|
|
13999
|
+
"string",
|
|
14000
|
+
"number",
|
|
14001
|
+
"boolean"
|
|
14002
|
+
]
|
|
14003
|
+
},
|
|
14004
|
+
"description": "Exact equality filters for primitive note props."
|
|
14005
|
+
},
|
|
14006
|
+
"queryVariantCount": {
|
|
14007
|
+
"type": "integer",
|
|
14008
|
+
"minimum": 2,
|
|
14009
|
+
"maximum": 4,
|
|
14010
|
+
"description": "Number of variants. Default 3."
|
|
14011
|
+
},
|
|
14012
|
+
"candidatePool": {
|
|
14013
|
+
"type": "integer",
|
|
14014
|
+
"minimum": 10,
|
|
14015
|
+
"maximum": 100,
|
|
14016
|
+
"description": "Total fused candidates before final reranking. Default 50."
|
|
14017
|
+
},
|
|
14018
|
+
"graphSeedCount": {
|
|
14019
|
+
"type": "integer",
|
|
14020
|
+
"minimum": 0,
|
|
14021
|
+
"maximum": 20,
|
|
14022
|
+
"description": "Strong preliminary notes whose graph neighborhoods are considered. Default 8."
|
|
14023
|
+
},
|
|
14024
|
+
"graphDepth": {
|
|
14025
|
+
"type": "number",
|
|
14026
|
+
"const": 1,
|
|
14027
|
+
"description": "Graph expansion depth. Bounded to exactly one hop."
|
|
14028
|
+
},
|
|
14029
|
+
"graphNeighborsPerSeed": {
|
|
14030
|
+
"type": "integer",
|
|
14031
|
+
"minimum": 1,
|
|
14032
|
+
"maximum": 10,
|
|
14033
|
+
"description": "Maximum outgoing-link plus backlink neighbors per seed. Default 5."
|
|
14034
|
+
},
|
|
14035
|
+
"rerankTopN": {
|
|
14036
|
+
"type": "integer",
|
|
14037
|
+
"minimum": 1,
|
|
14038
|
+
"maximum": 50,
|
|
14039
|
+
"description": "Final results retained after Jina reranking. Default 30."
|
|
13716
14040
|
},
|
|
13717
14041
|
"topK": {
|
|
13718
14042
|
"type": "integer",
|
|
13719
14043
|
"minimum": 1,
|
|
13720
14044
|
"maximum": 50,
|
|
13721
|
-
"description": "
|
|
14045
|
+
"description": "Deprecated compatibility alias for rerankTopN. Prefer rerankTopN; default remains 30."
|
|
13722
14046
|
},
|
|
13723
14047
|
"includeShared": {
|
|
13724
14048
|
"type": "boolean",
|
|
13725
|
-
"description": "
|
|
14049
|
+
"description": "Also search individually accepted shares. Default true. Exact note metadata filters exclude shares without accessible metadata."
|
|
13726
14050
|
}
|
|
13727
14051
|
},
|
|
13728
14052
|
"required": [
|
|
@@ -13735,19 +14059,81 @@
|
|
|
13735
14059
|
"type": "object",
|
|
13736
14060
|
"properties": {
|
|
13737
14061
|
"ok": {
|
|
13738
|
-
"type": "boolean"
|
|
13739
|
-
"description": "True when the search ran; false on auth/scope or backend error."
|
|
14062
|
+
"type": "boolean"
|
|
13740
14063
|
},
|
|
13741
14064
|
"vault": {
|
|
13742
|
-
"type": "string"
|
|
13743
|
-
"description": "Present only when a single vault was searched (vault was given). Absent when every entitled vault was searched — use each result's own \"vault\" field instead."
|
|
14065
|
+
"type": "string"
|
|
13744
14066
|
},
|
|
13745
14067
|
"vaultsSearched": {
|
|
13746
14068
|
"type": "array",
|
|
13747
14069
|
"items": {
|
|
13748
14070
|
"type": "string"
|
|
14071
|
+
}
|
|
14072
|
+
},
|
|
14073
|
+
"planner": {
|
|
14074
|
+
"type": "object",
|
|
14075
|
+
"properties": {
|
|
14076
|
+
"queryVariants": {
|
|
14077
|
+
"type": "array",
|
|
14078
|
+
"items": {
|
|
14079
|
+
"type": "string"
|
|
14080
|
+
}
|
|
14081
|
+
},
|
|
14082
|
+
"candidatePool": {
|
|
14083
|
+
"type": "number"
|
|
14084
|
+
},
|
|
14085
|
+
"graphSeedCount": {
|
|
14086
|
+
"type": "number"
|
|
14087
|
+
},
|
|
14088
|
+
"graphDepth": {
|
|
14089
|
+
"type": "number"
|
|
14090
|
+
},
|
|
14091
|
+
"graphNeighborsPerSeed": {
|
|
14092
|
+
"type": "number"
|
|
14093
|
+
},
|
|
14094
|
+
"rerankTopN": {
|
|
14095
|
+
"type": "number"
|
|
14096
|
+
},
|
|
14097
|
+
"seeds": {
|
|
14098
|
+
"type": "array",
|
|
14099
|
+
"items": {
|
|
14100
|
+
"type": "string"
|
|
14101
|
+
}
|
|
14102
|
+
},
|
|
14103
|
+
"graphCandidatesAdded": {
|
|
14104
|
+
"type": "number"
|
|
14105
|
+
}
|
|
13749
14106
|
},
|
|
13750
|
-
"
|
|
14107
|
+
"required": [
|
|
14108
|
+
"queryVariants",
|
|
14109
|
+
"candidatePool",
|
|
14110
|
+
"graphSeedCount",
|
|
14111
|
+
"graphDepth",
|
|
14112
|
+
"graphNeighborsPerSeed",
|
|
14113
|
+
"rerankTopN",
|
|
14114
|
+
"seeds",
|
|
14115
|
+
"graphCandidatesAdded"
|
|
14116
|
+
],
|
|
14117
|
+
"additionalProperties": false
|
|
14118
|
+
},
|
|
14119
|
+
"rerank": {
|
|
14120
|
+
"type": "object",
|
|
14121
|
+
"properties": {
|
|
14122
|
+
"applied": {
|
|
14123
|
+
"type": "boolean"
|
|
14124
|
+
},
|
|
14125
|
+
"provider": {
|
|
14126
|
+
"type": "string"
|
|
14127
|
+
},
|
|
14128
|
+
"fallbackReason": {
|
|
14129
|
+
"type": "string"
|
|
14130
|
+
}
|
|
14131
|
+
},
|
|
14132
|
+
"required": [
|
|
14133
|
+
"applied",
|
|
14134
|
+
"provider"
|
|
14135
|
+
],
|
|
14136
|
+
"additionalProperties": false
|
|
13751
14137
|
},
|
|
13752
14138
|
"results": {
|
|
13753
14139
|
"type": "array",
|
|
@@ -13755,42 +14141,68 @@
|
|
|
13755
14141
|
"type": "object",
|
|
13756
14142
|
"properties": {
|
|
13757
14143
|
"text": {
|
|
13758
|
-
"type": "string"
|
|
13759
|
-
"description": "The matching text chunk. Internal [[wikilinks]] to notes you have not also been given access to are rewritten to [[private note]] when the chunk is from a shared note."
|
|
14144
|
+
"type": "string"
|
|
13760
14145
|
},
|
|
13761
14146
|
"source": {
|
|
13762
|
-
"type": "string"
|
|
13763
|
-
"description": "Source attribution for the chunk (e.g. note:path or library:source) — the part after the colon is usually the note path, addressable on memory-get with the vault below."
|
|
14147
|
+
"type": "string"
|
|
13764
14148
|
},
|
|
13765
14149
|
"score": {
|
|
13766
|
-
"type": "number"
|
|
13767
|
-
|
|
14150
|
+
"type": "number"
|
|
14151
|
+
},
|
|
14152
|
+
"originalScore": {
|
|
14153
|
+
"type": "number"
|
|
14154
|
+
},
|
|
14155
|
+
"rerankScore": {
|
|
14156
|
+
"type": "number"
|
|
13768
14157
|
},
|
|
13769
14158
|
"vault": {
|
|
13770
|
-
"type": "string"
|
|
13771
|
-
"description": "The vault handle this result came from — pass straight to memory-get/memory-list. Absent on individually-shared results (use shareId instead)."
|
|
14159
|
+
"type": "string"
|
|
13772
14160
|
},
|
|
13773
14161
|
"sharedBy": {
|
|
13774
|
-
"type": "string"
|
|
13775
|
-
"description": "Present only on results from a note shared with you (not your own vault): the identity who owns it. Treat as untrusted, like any shared content."
|
|
14162
|
+
"type": "string"
|
|
13776
14163
|
},
|
|
13777
14164
|
"shareId": {
|
|
13778
|
-
"type": "string"
|
|
13779
|
-
|
|
14165
|
+
"type": "string"
|
|
14166
|
+
},
|
|
14167
|
+
"matchChannels": {
|
|
14168
|
+
"type": "array",
|
|
14169
|
+
"items": {
|
|
14170
|
+
"type": "string",
|
|
14171
|
+
"enum": [
|
|
14172
|
+
"semantic",
|
|
14173
|
+
"tag",
|
|
14174
|
+
"metadata",
|
|
14175
|
+
"graph"
|
|
14176
|
+
]
|
|
14177
|
+
}
|
|
14178
|
+
},
|
|
14179
|
+
"matchedQueries": {
|
|
14180
|
+
"type": "array",
|
|
14181
|
+
"items": {
|
|
14182
|
+
"type": "string"
|
|
14183
|
+
}
|
|
14184
|
+
},
|
|
14185
|
+
"graphFrom": {
|
|
14186
|
+
"type": "array",
|
|
14187
|
+
"items": {
|
|
14188
|
+
"type": "string"
|
|
14189
|
+
}
|
|
13780
14190
|
}
|
|
13781
14191
|
},
|
|
13782
14192
|
"required": [
|
|
13783
14193
|
"text",
|
|
13784
14194
|
"source",
|
|
13785
|
-
"score"
|
|
14195
|
+
"score",
|
|
14196
|
+
"originalScore",
|
|
14197
|
+
"matchChannels",
|
|
14198
|
+
"matchedQueries",
|
|
14199
|
+
"graphFrom"
|
|
13786
14200
|
],
|
|
13787
14201
|
"additionalProperties": false
|
|
13788
|
-
}
|
|
13789
|
-
"description": "Most-relevant chunks ordered by score, across every vault searched plus accepted shares. Present when ok is true; may be empty."
|
|
14202
|
+
}
|
|
13790
14203
|
},
|
|
13791
14204
|
"error": {
|
|
13792
|
-
"type": "string"
|
|
13793
|
-
"description": "Human-readable failure reason when ok is false."
|
|
14205
|
+
"type": "string"
|
|
13794
14206
|
}
|
|
13795
14207
|
},
|
|
13796
14208
|
"required": [
|
|
@@ -13800,7 +14212,7 @@
|
|
|
13800
14212
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
13801
14213
|
},
|
|
13802
14214
|
"annotations": {
|
|
13803
|
-
"title": "
|
|
14215
|
+
"title": "Hybrid Smart RAG Memory Search",
|
|
13804
14216
|
"readOnlyHint": true,
|
|
13805
14217
|
"destructiveHint": false,
|
|
13806
14218
|
"idempotentHint": true,
|
|
@@ -14591,7 +15003,7 @@
|
|
|
14591
15003
|
{
|
|
14592
15004
|
"name": "prepare-memory-write",
|
|
14593
15005
|
"title": "Prepare Memory Write",
|
|
14594
|
-
"description": "Mandatory planning pass for a normal new memory.
|
|
15006
|
+
"description": "Mandatory planning pass for a normal new memory. First inspect the complete tag vocabulary with list-memory-tags; then this pass routes the note, returns the live template and natural vault relationships, resolves proposed tags, and shortlists interlinks. Use hybrid memory-search (3 focused queries, 50 fused candidates, bounded graph expansion, rerank to 30 by default) and read strong related notes before capture. This is an explicit AI workflow directive, not a claim of persisted call-order enforcement.",
|
|
14595
15007
|
"inputSchema": {
|
|
14596
15008
|
"type": "object",
|
|
14597
15009
|
"properties": {
|
|
@@ -14709,7 +15121,7 @@
|
|
|
14709
15121
|
{
|
|
14710
15122
|
"name": "propose-scheduled-action",
|
|
14711
15123
|
"title": "Propose Scheduled Action",
|
|
14712
|
-
"description": "Turn freeform text describing what you want automated into a structured proposal (description, vault, cadence) for review and confirmation via create-scheduled-action — this is the propose step only; nothing is created here.",
|
|
15124
|
+
"description": "Turn freeform text describing what you want automated into a structured proposal (description, vault, cadence, time of day, timezone) for review and confirmation via create-scheduled-action — this is the propose step only; nothing is created here.",
|
|
14713
15125
|
"inputSchema": {
|
|
14714
15126
|
"type": "object",
|
|
14715
15127
|
"properties": {
|
|
@@ -14743,6 +15155,14 @@
|
|
|
14743
15155
|
"type": "string",
|
|
14744
15156
|
"description": "Proposed cadence: once, daily, weekly, or monthly."
|
|
14745
15157
|
},
|
|
15158
|
+
"timeOfDay": {
|
|
15159
|
+
"type": "string",
|
|
15160
|
+
"description": "Proposed 24-hour HH:MM run time, when the request named one."
|
|
15161
|
+
},
|
|
15162
|
+
"timezone": {
|
|
15163
|
+
"type": "string",
|
|
15164
|
+
"description": "Proposed IANA timezone — from the request, or the account default when the request named a time without a zone."
|
|
15165
|
+
},
|
|
14746
15166
|
"rationale": {
|
|
14747
15167
|
"type": "string",
|
|
14748
15168
|
"description": "Why these choices were made — read this before confirming."
|
|
@@ -14771,18 +15191,18 @@
|
|
|
14771
15191
|
{
|
|
14772
15192
|
"name": "provision-defaults",
|
|
14773
15193
|
"title": "Provision Default Vaults",
|
|
14774
|
-
"description": "Provision the standard
|
|
15194
|
+
"description": "Provision the standard 14-vault memory structure (Ideas, Inspiration, Knowledge, Library, People, Communications, Calendar, Tasks, Projects, Issues, Improvement Log, Experiments, Sprint, Skills) for an identity. Idempotent — existing vaults are untouched. Optionally issues a fresh API key entitled to all 14. Requires admin scope.",
|
|
14775
15195
|
"inputSchema": {
|
|
14776
15196
|
"type": "object",
|
|
14777
15197
|
"properties": {
|
|
14778
15198
|
"granteeIdentity": {
|
|
14779
15199
|
"type": "string",
|
|
14780
15200
|
"minLength": 1,
|
|
14781
|
-
"description": "Identity that should OWN the
|
|
15201
|
+
"description": "Identity that should OWN the 14 default vaults (e.g. an email or user id)."
|
|
14782
15202
|
},
|
|
14783
15203
|
"issueKey": {
|
|
14784
15204
|
"type": "boolean",
|
|
14785
|
-
"description": "When true, also issue a new API key for the identity entitled to all
|
|
15205
|
+
"description": "When true, also issue a new API key for the identity entitled to all 14 vaults and return its secret once. Default false."
|
|
14786
15206
|
},
|
|
14787
15207
|
"plan": {
|
|
14788
15208
|
"type": "string",
|
|
@@ -14817,14 +15237,14 @@
|
|
|
14817
15237
|
"items": {
|
|
14818
15238
|
"type": "string"
|
|
14819
15239
|
},
|
|
14820
|
-
"description": "Vault names newly created on this call (empty when all
|
|
15240
|
+
"description": "Vault names newly created on this call (empty when all 14 already existed)."
|
|
14821
15241
|
},
|
|
14822
15242
|
"vaults": {
|
|
14823
15243
|
"type": "array",
|
|
14824
15244
|
"items": {
|
|
14825
15245
|
"type": "string"
|
|
14826
15246
|
},
|
|
14827
|
-
"description": "All
|
|
15247
|
+
"description": "All 14 default vault names the identity now owns."
|
|
14828
15248
|
},
|
|
14829
15249
|
"keyId": {
|
|
14830
15250
|
"type": "string",
|
|
@@ -16285,7 +16705,7 @@
|
|
|
16285
16705
|
{
|
|
16286
16706
|
"name": "resolve-memory-tags",
|
|
16287
16707
|
"title": "Resolve Memory Tags",
|
|
16288
|
-
"description": "Resolve proposed concepts against the live tag vocabulary. Returns reuse, create, or omit
|
|
16708
|
+
"description": "Resolve proposed concepts against the live tag vocabulary. Always inspect the complete vocabulary with list-memory-tags first. Returns reuse, create, or omit; a new tag is appropriate only when no equivalent exists and the concept is central and reusable.",
|
|
16289
16709
|
"inputSchema": {
|
|
16290
16710
|
"type": "object",
|
|
16291
16711
|
"properties": {
|
|
@@ -16399,7 +16819,7 @@
|
|
|
16399
16819
|
{
|
|
16400
16820
|
"name": "resume-scheduled-action",
|
|
16401
16821
|
"title": "Resume Scheduled Action",
|
|
16402
|
-
"description": "Resume a paused scheduled action. Its next run is computed fresh from now, not backfilled for time spent paused.",
|
|
16822
|
+
"description": "Resume a paused scheduled action for an active MCP Scraper Starter plan or higher. Its next run is computed fresh from now, not backfilled for time spent paused.",
|
|
16403
16823
|
"inputSchema": {
|
|
16404
16824
|
"type": "object",
|
|
16405
16825
|
"properties": {
|
|
@@ -17061,10 +17481,65 @@
|
|
|
17061
17481
|
"taskSupport": "forbidden"
|
|
17062
17482
|
}
|
|
17063
17483
|
},
|
|
17484
|
+
{
|
|
17485
|
+
"name": "set-schedule-defaults",
|
|
17486
|
+
"title": "Set Schedule Defaults",
|
|
17487
|
+
"description": "Set your default timezone for scheduled actions. Any schedule you later create with a time of day but no explicit timezone uses this default instead of UTC. Pass null to clear it back to UTC.",
|
|
17488
|
+
"inputSchema": {
|
|
17489
|
+
"type": "object",
|
|
17490
|
+
"properties": {
|
|
17491
|
+
"defaultTimezone": {
|
|
17492
|
+
"type": [
|
|
17493
|
+
"string",
|
|
17494
|
+
"null"
|
|
17495
|
+
],
|
|
17496
|
+
"description": "IANA timezone name, e.g. \"America/Denver\". null clears the default (new schedules fall back to UTC)."
|
|
17497
|
+
}
|
|
17498
|
+
},
|
|
17499
|
+
"required": [
|
|
17500
|
+
"defaultTimezone"
|
|
17501
|
+
],
|
|
17502
|
+
"additionalProperties": false,
|
|
17503
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
17504
|
+
},
|
|
17505
|
+
"outputSchema": {
|
|
17506
|
+
"type": "object",
|
|
17507
|
+
"properties": {
|
|
17508
|
+
"ok": {
|
|
17509
|
+
"type": "boolean"
|
|
17510
|
+
},
|
|
17511
|
+
"defaultTimezone": {
|
|
17512
|
+
"type": [
|
|
17513
|
+
"string",
|
|
17514
|
+
"null"
|
|
17515
|
+
],
|
|
17516
|
+
"description": "The default timezone now in effect; null means UTC."
|
|
17517
|
+
},
|
|
17518
|
+
"error": {
|
|
17519
|
+
"type": "string"
|
|
17520
|
+
}
|
|
17521
|
+
},
|
|
17522
|
+
"required": [
|
|
17523
|
+
"ok"
|
|
17524
|
+
],
|
|
17525
|
+
"additionalProperties": false,
|
|
17526
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
17527
|
+
},
|
|
17528
|
+
"annotations": {
|
|
17529
|
+
"title": "Set Schedule Defaults",
|
|
17530
|
+
"readOnlyHint": false,
|
|
17531
|
+
"destructiveHint": false,
|
|
17532
|
+
"idempotentHint": true,
|
|
17533
|
+
"openWorldHint": false
|
|
17534
|
+
},
|
|
17535
|
+
"execution": {
|
|
17536
|
+
"taskSupport": "forbidden"
|
|
17537
|
+
}
|
|
17538
|
+
},
|
|
17064
17539
|
{
|
|
17065
17540
|
"name": "set-schedule-entitlement",
|
|
17066
17541
|
"title": "Set Schedule Entitlement",
|
|
17067
|
-
"description": "Admin-only scheduled-action credential provisioning and historical-row recovery.
|
|
17542
|
+
"description": "Admin-only scheduled-action credential provisioning and historical-row recovery. Use mcpScraperApiKey to rotate the encrypted delegated key without changing legacy enabled/quota fields. The former entitlement and quota values are retained only for migration compatibility and are not runtime access controls; paid-plan access is validated against MCP Scraper directly.",
|
|
17068
17543
|
"inputSchema": {
|
|
17069
17544
|
"type": "object",
|
|
17070
17545
|
"properties": {
|
|
@@ -17079,7 +17554,7 @@
|
|
|
17079
17554
|
},
|
|
17080
17555
|
"quotaPerPeriod": {
|
|
17081
17556
|
"type": "number",
|
|
17082
|
-
"description": "Historical monthly
|
|
17557
|
+
"description": "Historical monthly quota for migration/recovery only. Omit to preserve the stored value."
|
|
17083
17558
|
},
|
|
17084
17559
|
"mcpScraperApiKey": {
|
|
17085
17560
|
"type": "string",
|
|
@@ -18219,7 +18694,7 @@
|
|
|
18219
18694
|
{
|
|
18220
18695
|
"name": "upsert-memory-tag",
|
|
18221
18696
|
"title": "Upsert Memory Tag",
|
|
18222
|
-
"description": "Define or curate one canonical tag, its meaning, aliases, and lifecycle.
|
|
18697
|
+
"description": "Define or curate one canonical tag, its meaning, aliases, and lifecycle. Inspect the complete vocabulary with list-memory-tags first; use only after resolve-memory-tags returns create, or to merge/deprecate vocabulary intentionally. Requires write scope.",
|
|
18223
18698
|
"inputSchema": {
|
|
18224
18699
|
"type": "object",
|
|
18225
18700
|
"properties": {
|
|
@@ -18400,6 +18875,27 @@
|
|
|
18400
18875
|
"type": "string",
|
|
18401
18876
|
"description": "Explicit sub-folder within the vault; overrides routing-derived folder."
|
|
18402
18877
|
},
|
|
18878
|
+
"script_links": {
|
|
18879
|
+
"type": "array",
|
|
18880
|
+
"items": {
|
|
18881
|
+
"type": "string"
|
|
18882
|
+
},
|
|
18883
|
+
"description": "Skills only: one or more Obsidian/internal paths under scripts/."
|
|
18884
|
+
},
|
|
18885
|
+
"reference_links": {
|
|
18886
|
+
"type": "array",
|
|
18887
|
+
"items": {
|
|
18888
|
+
"type": "string"
|
|
18889
|
+
},
|
|
18890
|
+
"description": "Skills only: optional Obsidian/internal paths under references/."
|
|
18891
|
+
},
|
|
18892
|
+
"template_links": {
|
|
18893
|
+
"type": "array",
|
|
18894
|
+
"items": {
|
|
18895
|
+
"type": "string"
|
|
18896
|
+
},
|
|
18897
|
+
"description": "Skills only: optional Obsidian/internal paths under templates/."
|
|
18898
|
+
},
|
|
18403
18899
|
"parentMessageId": {
|
|
18404
18900
|
"type": "string",
|
|
18405
18901
|
"description": "Channel messages only: the path of the top-level message this is a reply to. Absent on top-level messages."
|
|
@@ -18685,14 +19181,14 @@
|
|
|
18685
19181
|
{
|
|
18686
19182
|
"name": "video-analyze-start",
|
|
18687
19183
|
"title": "Start Video Breakdown",
|
|
18688
|
-
"description": "Start a deep async breakdown of a video: samples frames, transcribes audio, and runs parallel analyses (summary, pacing, WPM, topic outline, key points, hook analysis, visual style, replication recipe) into one saved report. Returns a runId immediately — poll video-analyze-status.
|
|
19184
|
+
"description": "Start a deep async breakdown of a video: samples frames, transcribes audio, and runs parallel analyses (summary, pacing, WPM, topic outline, key points, hook analysis, visual style, replication recipe) into one saved report. Returns a runId immediately — poll video-analyze-status. Accepts a YouTube, Facebook, Instagram, TikTok, or Vimeo URL directly (downloaded for you), or a direct video file URL (.mp4/.webm/.mov). Videos up to 1 hour.",
|
|
18689
19185
|
"inputSchema": {
|
|
18690
19186
|
"type": "object",
|
|
18691
19187
|
"properties": {
|
|
18692
19188
|
"sourceUrl": {
|
|
18693
19189
|
"type": "string",
|
|
18694
19190
|
"format": "uri",
|
|
18695
|
-
"description": "
|
|
19191
|
+
"description": "A YouTube, Facebook, Instagram, TikTok, or Vimeo URL (downloaded automatically), or a direct video file URL (.mp4/.webm/.mov/.gif)."
|
|
18696
19192
|
},
|
|
18697
19193
|
"intervalS": {
|
|
18698
19194
|
"type": "number",
|