@smithery/cli 1.1.31 → 1.1.33
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 +5 -1
- package/dist/index.js +87 -87
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,7 +14,8 @@ npx @smithery/cli <command>
|
|
|
14
14
|
### Available Commands
|
|
15
15
|
|
|
16
16
|
- `install <package>` - Install a package
|
|
17
|
-
|
|
17
|
+
- `--client <name>` - Specify the AI client
|
|
18
|
+
- `--data <json>` - Provide configuration data as JSON (skips prompts)
|
|
18
19
|
- `uninstall <package>` - Uninstall a package
|
|
19
20
|
- `--client <name>` - Specify the AI client
|
|
20
21
|
- `inspect <server-id>` - Inspect a server interactively
|
|
@@ -30,6 +31,9 @@ npx @smithery/cli <command>
|
|
|
30
31
|
# Install a server (requires --client flag)
|
|
31
32
|
npx @smithery/cli install mcp-obsidian --client claude
|
|
32
33
|
|
|
34
|
+
# Install a server with pre-configured data (skips prompts)
|
|
35
|
+
npx @smithery/cli install mcp-obsidian --client claude --data '{"apiKey":"your-api-key","region":"us-west-2"}'
|
|
36
|
+
|
|
33
37
|
# Remove a server
|
|
34
38
|
npx @smithery/cli uninstall mcp-obsidian --client claude
|
|
35
39
|
|