@smithery/cli 4.0.0-preview.3 → 4.0.0-preview.5

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 +20 -18
  2. package/dist/index.js +275 -271
  3. package/package.json +2 -6
package/README.md CHANGED
@@ -22,11 +22,13 @@ smithery mcp remove <ids...> # Remove connections
22
22
 
23
23
  ### Tools
24
24
 
25
+ Interact with tools from MCP servers connected via `smithery mcp`.
26
+
25
27
  ```bash
26
- smithery tools list [connection] # List available tools
27
- smithery tools search <query> # Search tools by intent
28
- smithery tools get <connection/tool> # Show full details for one tool
29
- smithery tools call <connection> <tool> [args] # Call a tool
28
+ smithery tool list [connection] # List tools from your connected MCP servers
29
+ smithery tool find [query] # Search tools by name or intent
30
+ smithery tool get <connection> <tool> # Show full details for one tool
31
+ smithery tool call <connection> <tool> [args] # Call a tool
30
32
  ```
31
33
 
32
34
  ### Skills
@@ -34,17 +36,17 @@ smithery tools call <connection> <tool> [args] # Call a tool
34
36
  Browse and install skills from the [Smithery Skills Registry](https://smithery.ai/skills).
35
37
 
36
38
  ```bash
37
- smithery skills search [query] # Search skills
38
- smithery skills install <skill> --agent <name> # Install a skill
39
- smithery skills upvote <skill> # Upvote a skill
40
- smithery skills downvote <skill> # Downvote a skill
39
+ smithery skill search [query] # Search skills
40
+ smithery skill add <skill> --agent <name> # Add a skill
41
+ smithery skill upvote <skill> # Upvote a skill
42
+ smithery skill downvote <skill> # Downvote a skill
41
43
 
42
44
  # Reviews
43
- smithery skills review list <skill> # List reviews
44
- smithery skills review add <skill> --up -b "text" # Add review + vote
45
- smithery skills review remove <skill> # Remove your review
46
- smithery skills review upvote <skill> <review-id> # Upvote a review
47
- smithery skills review downvote <skill> <review-id> # Downvote a review
45
+ smithery skill review list <skill> # List reviews
46
+ smithery skill review add <skill> --up -b "text" # Add review + vote
47
+ smithery skill review remove <skill> # Remove your review
48
+ smithery skill review upvote <skill> <review-id> # Upvote a review
49
+ smithery skill review downvote <skill> <review-id> # Downvote a review
48
50
  ```
49
51
 
50
52
  ### Auth
@@ -77,13 +79,13 @@ smithery mcp publish <url> -n <org/server> # Publish an MCP server URL
77
79
  smithery mcp search "github"
78
80
  smithery mcp add https://server.smithery.ai/github --id github
79
81
 
80
- # Discover and use tools
81
- smithery tools search "create issue"
82
- smithery tools call github create_issue '{"title":"Bug fix","body":"..."}'
82
+ # Find and call tools from your connected MCP servers
83
+ smithery tool find "create issue"
84
+ smithery tool call github create_issue '{"title":"Bug fix","body":"..."}'
83
85
 
84
86
  # Browse and install skills
85
- smithery skills search "frontend" --json --page 2
86
- smithery skills install anthropics/frontend-design --agent claude-code
87
+ smithery skill search "frontend" --json --page 2
88
+ smithery skill add anthropics/frontend-design --agent claude-code
87
89
 
88
90
  # Publish your MCP server URL
89
91
  smithery mcp publish "https://my-mcp-server.com" -n myorg/my-server