@agiflowai/one-mcp 0.3.7 → 0.3.9
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 +19 -1
- package/dist/cli.cjs +961 -763
- package/dist/cli.mjs +961 -763
- package/dist/{http-BzTXYfkN.mjs → http-BDeLFFzK.mjs} +7 -7
- package/dist/{http-CKXz9Gp8.cjs → http-pwzeCOpM.cjs} +7 -7
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -423,14 +423,32 @@ npx @agiflowai/one-mcp init --output mcp-config.yaml
|
|
|
423
423
|
# Pre-download packages for faster startup
|
|
424
424
|
npx @agiflowai/one-mcp prefetch --config ./mcp-config.yaml
|
|
425
425
|
|
|
426
|
-
# List all tools from configured servers
|
|
426
|
+
# List all tools from configured servers (also shows configured skills)
|
|
427
427
|
npx @agiflowai/one-mcp list-tools --config ./mcp-config.yaml
|
|
428
428
|
|
|
429
|
+
# List tools as JSON (includes __skills__ key)
|
|
430
|
+
npx @agiflowai/one-mcp list-tools --config ./mcp-config.yaml --json
|
|
431
|
+
|
|
432
|
+
# Filter tools by server
|
|
433
|
+
npx @agiflowai/one-mcp list-tools --config ./mcp-config.yaml --server filesystem
|
|
434
|
+
|
|
429
435
|
# Get tool details
|
|
430
436
|
npx @agiflowai/one-mcp describe-tools --config ./mcp-config.yaml --tools read_file,write_file
|
|
431
437
|
|
|
432
438
|
# Execute a tool directly
|
|
433
439
|
npx @agiflowai/one-mcp use-tool --config ./mcp-config.yaml --tool-name read_file --args '{"path": "/tmp/test.txt"}'
|
|
440
|
+
|
|
441
|
+
# List all resources from configured servers
|
|
442
|
+
npx @agiflowai/one-mcp list-resources --config ./mcp-config.yaml
|
|
443
|
+
|
|
444
|
+
# Filter resources by server
|
|
445
|
+
npx @agiflowai/one-mcp list-resources --config ./mcp-config.yaml --server my-server
|
|
446
|
+
|
|
447
|
+
# Read a resource by URI
|
|
448
|
+
npx @agiflowai/one-mcp read-resource --config ./mcp-config.yaml file:///readme.md
|
|
449
|
+
|
|
450
|
+
# Read from a specific server
|
|
451
|
+
npx @agiflowai/one-mcp read-resource --config ./mcp-config.yaml --server my-server file:///readme.md
|
|
434
452
|
```
|
|
435
453
|
|
|
436
454
|
### Prefetch Command
|