@smithery/cli 1.1.30 → 1.1.32
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 +9 -1
- package/dist/index.js +63 -63
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ npx @smithery/cli <command>
|
|
|
20
20
|
- `inspect <server-id>` - Inspect a server interactively
|
|
21
21
|
- `run <server-id>` - Run a server
|
|
22
22
|
- `--config <json>` - Provide configuration for the server
|
|
23
|
+
- `list clients` - List available clients
|
|
24
|
+
- `--help` - Show help message
|
|
23
25
|
- `--verbose` - Show detailed logs for debugging
|
|
24
26
|
|
|
25
27
|
### Examples
|
|
@@ -31,12 +33,18 @@ npx @smithery/cli install mcp-obsidian --client claude
|
|
|
31
33
|
# Remove a server
|
|
32
34
|
npx @smithery/cli uninstall mcp-obsidian --client claude
|
|
33
35
|
|
|
34
|
-
#
|
|
36
|
+
# List available clients
|
|
37
|
+
npx @smithery/cli list clients
|
|
38
|
+
|
|
39
|
+
# Inspect a specific server from smithery's registry
|
|
35
40
|
npx @smithery/cli inspect mcp-obsidian
|
|
36
41
|
|
|
37
42
|
# Run a server with configuration
|
|
38
43
|
npx @smithery/cli run mcp-obsidian --config '"{\\"key\\":\\"value\\"}"'
|
|
39
44
|
|
|
45
|
+
# Show help menu
|
|
46
|
+
npx @smithery/cli --help
|
|
47
|
+
|
|
40
48
|
# Install with verbose logging for debugging
|
|
41
49
|
npx @smithery/cli install mcp-obsidian --client claude --verbose
|
|
42
50
|
```
|