mcp-scraper 0.4.0 → 0.4.1
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/api-server.cjs +18 -1
- 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 +3 -2
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +2 -2
- package/dist/bin/mcp-stdio-server.cjs +20 -2
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +3 -3
- package/dist/chunk-2ULBZRQQ.js +7 -0
- package/dist/chunk-2ULBZRQQ.js.map +1 -0
- package/dist/{chunk-T3VZD2I4.js → chunk-5HNHYUJ5.js} +3 -2
- package/dist/chunk-5HNHYUJ5.js.map +1 -0
- package/dist/{chunk-3NIPPJGP.js → chunk-QUOZ3LZG.js} +19 -2
- package/dist/chunk-QUOZ3LZG.js.map +1 -0
- package/dist/{server-Z4WKTE6F.js → server-U7V6DUSY.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-3NIPPJGP.js.map +0 -1
- package/dist/chunk-IXDYL7TE.js +0 -7
- package/dist/chunk-IXDYL7TE.js.map +0 -1
- package/dist/chunk-T3VZD2I4.js.map +0 -1
- /package/dist/{server-Z4WKTE6F.js.map → server-U7V6DUSY.js.map} +0 -0
package/dist/bin/api-server.cjs
CHANGED
|
@@ -26325,7 +26325,7 @@ var PACKAGE_VERSION;
|
|
|
26325
26325
|
var init_version = __esm({
|
|
26326
26326
|
"src/version.ts"() {
|
|
26327
26327
|
"use strict";
|
|
26328
|
-
PACKAGE_VERSION = "0.4.
|
|
26328
|
+
PACKAGE_VERSION = "0.4.1";
|
|
26329
26329
|
}
|
|
26330
26330
|
});
|
|
26331
26331
|
|
|
@@ -26422,6 +26422,23 @@ Multi-step orchestrations \u2014 prefer these over hand-chaining primitives when
|
|
|
26422
26422
|
answers the question (plain search/extract before browser agents).
|
|
26423
26423
|
- Large results are saved to disk or an artifact and returned as a summary plus a path or artifactId;
|
|
26424
26424
|
read it back for full detail rather than expecting the whole payload inline.
|
|
26425
|
+
|
|
26426
|
+
## Memory
|
|
26427
|
+
mcp-scraper also exposes 74 persistent per-user memory tools (notes, facts, vaults,
|
|
26428
|
+
scheduled actions, tables, channels) backed by memory.mcpscraper.dev. Every account starts with 13
|
|
26429
|
+
vaults \u2014 call **list-vaults** to see what exists before creating anything new. Pick the vault whose job
|
|
26430
|
+
matches the content: **Ideas** (unvalidated concepts), **Knowledge** (distilled lessons/how-tos),
|
|
26431
|
+
**Library** (raw source material \u2014 articles, transcripts), **People** (one durable note per person/org),
|
|
26432
|
+
**Communications** (individual conversation records), **Calendar** (time-anchored entries), **Tasks**
|
|
26433
|
+
(action items with a status), **Projects** (durable named initiatives), **Issues** (something broken),
|
|
26434
|
+
**Improvement Log** (receipts of changes made and whether they worked), **Experiments** (hypothesis +
|
|
26435
|
+
measured result), **Sprint** (current cycle's scope), **Inspiration** (other people's work worth
|
|
26436
|
+
studying).
|
|
26437
|
+
Before writing, call **memory-suggest** to check whether something's already captured and to find the
|
|
26438
|
+
right vault's hub note to link. Use **memory-put** for narrative notes (prose, a title, a body); use
|
|
26439
|
+
**table-create**/**table-insert-rows**/**table-query** instead when the caller wants row-shaped data
|
|
26440
|
+
they'll filter/sort by exact value. **memory-search** is meaning-based over full content (embeds, slower);
|
|
26441
|
+
**memory-list** filters one vault by kind/tags (fast, exact).
|
|
26425
26442
|
`.trim();
|
|
26426
26443
|
}
|
|
26427
26444
|
var SERVER_INSTRUCTIONS;
|