@smithery/cli 3.12.1 → 3.13.1

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.
Files changed (3) hide show
  1. package/README.md +7 -7
  2. package/dist/index.js +235 -235
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Smithery CLI [![NPM Version](https://img.shields.io/npm/v/%40smithery%2Fcli)](https://www.npmjs.com/package/@smithery/cli) [![NPM Downloads](https://img.shields.io/npm/dt/%40smithery%2Fcli)](https://www.npmjs.com/package/@smithery/cli)
2
2
 
3
- CLI for installing MCP servers and managing cloud connections via [Smithery](https://smithery.ai).
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 a server locally
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 reusable prompt-based skills from the [Smithery Skills Registry](https://smithery.ai/skills).
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 "Handles responsive layouts well"
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