@smithery/cli 3.8.1 → 3.9.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 +36 -5
- package/dist/index.js +425 -417
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Requires Node.js 20+.
|
|
|
12
12
|
|
|
13
13
|
## Commands
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### Servers
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
smithery install <server> # Install a server to an AI client
|
|
@@ -25,13 +25,36 @@ smithery run <server> # Run a server locally
|
|
|
25
25
|
|
|
26
26
|
Options: `--client <name>` to skip client selection, `--config <json>` to provide configuration.
|
|
27
27
|
|
|
28
|
+
### Skills
|
|
29
|
+
|
|
30
|
+
Browse and install reusable prompt-based skills from the [Smithery Skills Registry](https://smithery.ai/skills). Installation uses the [Vercel Labs skills CLI](https://github.com/vercel-labs/skills).
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
smithery skills search [query] # Interactive skill search and browsing
|
|
34
|
+
smithery skills install <namespace/slug> --agent <name> # Install a skill
|
|
35
|
+
smithery skills install <skill> --agent <name> --global # Install globally
|
|
36
|
+
smithery skills agents # List available agents
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Options for `search`: `--json` for JSON output, `--limit <n>` for max results, `--namespace <ns>` to filter.
|
|
40
|
+
|
|
41
|
+
### Namespaces
|
|
42
|
+
|
|
43
|
+
Discover public namespaces on Smithery.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
smithery namespace search [query] # Search public namespaces (requires login)
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Options: `--limit <n>`, `--has-skills`, `--has-servers`.
|
|
50
|
+
|
|
28
51
|
### Smithery Connect (Cloud MCP)
|
|
29
52
|
|
|
30
53
|
Manage cloud-hosted MCP servers via [Smithery Connect](https://smithery.ai).
|
|
31
54
|
|
|
32
55
|
```bash
|
|
33
56
|
# Namespace context (auto-created on first use)
|
|
34
|
-
smithery namespace list # List namespaces
|
|
57
|
+
smithery namespace list # List your namespaces
|
|
35
58
|
smithery namespace use <name> # Set current namespace
|
|
36
59
|
smithery namespace show # Show current namespace
|
|
37
60
|
|
|
@@ -58,8 +81,16 @@ smithery playground # Open interactive testing UI
|
|
|
58
81
|
## Examples
|
|
59
82
|
|
|
60
83
|
```bash
|
|
61
|
-
# Install a server
|
|
62
|
-
smithery install exa --client
|
|
84
|
+
# Install a server locally
|
|
85
|
+
smithery install exa --client cursor
|
|
86
|
+
|
|
87
|
+
# Browse and install skills
|
|
88
|
+
smithery skills search "frontend" --json
|
|
89
|
+
smithery skills search --namespace anthropics --json # Filter by namespace
|
|
90
|
+
smithery skills install anthropics/frontend-design --agent claude-code
|
|
91
|
+
|
|
92
|
+
# Discover namespaces
|
|
93
|
+
smithery namespace search --has-skills # Find namespaces with skills
|
|
63
94
|
|
|
64
95
|
# Cloud MCP workflow
|
|
65
96
|
smithery connect add https://server.smithery.ai/github
|
|
@@ -75,7 +106,7 @@ smithery build --out dist/server.cjs
|
|
|
75
106
|
|
|
76
107
|
```bash
|
|
77
108
|
git clone https://github.com/smithery-ai/cli
|
|
78
|
-
cd cli &&
|
|
109
|
+
cd cli && pnpm install && pnpm run build
|
|
79
110
|
npx . --help
|
|
80
111
|
```
|
|
81
112
|
|