@smithery/cli 3.12.0 → 3.13.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 +7 -7
- package/dist/index.js +235 -235
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Smithery CLI [](https://www.npmjs.com/package/@smithery/cli) [](https://www.npmjs.com/package/@smithery/cli)
|
|
2
2
|
|
|
3
|
-
CLI for installing MCP servers and
|
|
3
|
+
CLI for discovering, installing, and using MCP servers and skills via [Smithery](https://smithery.ai). Connect your agents to thousands of skills and MCP servers from the Smithery registry.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @smithery/cli
|
|
8
|
+
npm install -g @smithery/cli@latest
|
|
9
9
|
```
|
|
10
10
|
Requires Node.js 20+.
|
|
11
11
|
|
|
@@ -19,14 +19,14 @@ smithery uninstall <server> # Remove a server
|
|
|
19
19
|
smithery list # List installed servers
|
|
20
20
|
smithery search [term] # Search the Smithery registry
|
|
21
21
|
smithery inspect <server> # Interactive server testing
|
|
22
|
-
smithery run <server> # Run
|
|
22
|
+
smithery run <server> # Run an MCP bundle locally
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Options: `--client <name>` to skip client selection, `--config <json>` to provide configuration.
|
|
26
26
|
|
|
27
27
|
### Skills
|
|
28
28
|
|
|
29
|
-
Browse and install
|
|
29
|
+
Browse and install skills from the [Smithery Skills Registry](https://smithery.ai/skills).
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
smithery skills search [query] # Search skills
|
|
@@ -95,15 +95,15 @@ smithery skills install anthropics/frontend-design --agent claude-code
|
|
|
95
95
|
|
|
96
96
|
# Review and vote on skills
|
|
97
97
|
smithery skills review list anthropics/frontend-design
|
|
98
|
-
smithery skills review add anthropics/frontend-design --up -b "
|
|
98
|
+
smithery skills review add anthropics/frontend-design --up -b "Great for Tailwind components, follows accessibility best practices"
|
|
99
99
|
smithery skills review upvote anthropics/frontend-design 550e8400-e29b-41d4-a716-446655440000
|
|
100
100
|
smithery skills upvote anthropics/frontend-design
|
|
101
101
|
|
|
102
102
|
# Discover namespaces
|
|
103
103
|
smithery namespace search --has-skills # Find namespaces with skills
|
|
104
104
|
|
|
105
|
-
# Cloud MCP workflow
|
|
106
|
-
smithery connect add https://server.smithery.ai/github
|
|
105
|
+
# Cloud MCP workflow (works with any MCP server URL)
|
|
106
|
+
smithery connect add https://server.smithery.ai/github # Or any MCP server
|
|
107
107
|
smithery connect search "create issue"
|
|
108
108
|
smithery connect call github/create_issue '{"title":"Bug fix","body":"..."}'
|
|
109
109
|
|