@smithery/cli 4.0.0-preview.2 → 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.
- package/README.md +20 -18
- package/dist/index.js +293 -269
- package/package.json +3 -7
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
|
|
27
|
-
smithery
|
|
28
|
-
smithery
|
|
29
|
-
smithery
|
|
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
|
|
38
|
-
smithery
|
|
39
|
-
smithery
|
|
40
|
-
smithery
|
|
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
|
|
44
|
-
smithery
|
|
45
|
-
smithery
|
|
46
|
-
smithery
|
|
47
|
-
smithery
|
|
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
|
-
#
|
|
81
|
-
smithery
|
|
82
|
-
smithery
|
|
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
|
|
86
|
-
smithery
|
|
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
|