@smithery/cli 1.1.25 → 1.1.26
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 +8 -0
- package/dist/index.js +69 -69
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ 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
|
+
- `--verbose` - Show detailed logs for debugging
|
|
23
24
|
|
|
24
25
|
### Examples
|
|
25
26
|
|
|
@@ -35,6 +36,9 @@ npx @smithery/cli inspect mcp-obsidian
|
|
|
35
36
|
|
|
36
37
|
# Run a server with configuration
|
|
37
38
|
npx @smithery/cli run mcp-obsidian --config '"{\\"key\\":\\"value\\"}"'
|
|
39
|
+
|
|
40
|
+
# Install with verbose logging for debugging
|
|
41
|
+
npx @smithery/cli install mcp-obsidian --client claude --verbose
|
|
38
42
|
```
|
|
39
43
|
|
|
40
44
|
### Important Notes
|
|
@@ -42,6 +46,7 @@ npx @smithery/cli run mcp-obsidian --config '"{\\"key\\":\\"value\\"}"'
|
|
|
42
46
|
- Remember to restart your AI client after installing or uninstalling servers
|
|
43
47
|
- Use the `inspect` command for interactive server testing
|
|
44
48
|
- Run without arguments to see the help menu
|
|
49
|
+
- Use `--verbose` flag for detailed logs when troubleshooting
|
|
45
50
|
|
|
46
51
|
## Development
|
|
47
52
|
|
|
@@ -76,6 +81,9 @@ npx . inspect <server-id>
|
|
|
76
81
|
|
|
77
82
|
# Install a server
|
|
78
83
|
npx . install <server-name> --client <client-name>
|
|
84
|
+
|
|
85
|
+
# Run with verbose logging
|
|
86
|
+
npx . <command> --verbose
|
|
79
87
|
```
|
|
80
88
|
|
|
81
89
|
## Contributing
|