mcpscraper-cli 0.1.1 → 0.3.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 +11 -1
- package/dist/bin/cli.js +6806 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Command-line interface for [mcpscraper.dev](https://mcpscraper.dev) and [memory.mcpscraper.dev](https://memory.mcpscraper.dev).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The CLI provides friendly shortcuts for common operations plus universal discovery and invocation for every one of the 153 unified MCP tools.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -20,6 +20,16 @@ or pass `--api-key <key>` on any command.
|
|
|
20
20
|
|
|
21
21
|
## Commands
|
|
22
22
|
|
|
23
|
+
### Every MCP tool
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
mcpscraper tools list
|
|
27
|
+
mcpscraper tools describe prepare-memory-write
|
|
28
|
+
mcpscraper tools call prepare-memory-write --args '{"title":"Example","content":"..."}' --json
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
`tools list` contains exactly 153 manifest-backed names. `tools call` accepts any one of them. Tools marked destructive require `--yes`.
|
|
32
|
+
|
|
23
33
|
### `mcpscraper search <query>`
|
|
24
34
|
|
|
25
35
|
```bash
|