@smithery/cli 4.5.0 → 4.6.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 +18 -0
- package/dist/automation.js +45 -0
- package/dist/index.js +322 -272
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -59,6 +59,19 @@ smithery auth token # Mint a service token
|
|
|
59
59
|
smithery auth token --policy '<json>' # Mint a restricted token
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
+
### Automations
|
|
63
|
+
|
|
64
|
+
Create and run deterministic MCP tool scripts — no AI involved, just direct tool calls.
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
smithery automation init # Initialize the ~/.smithery automations project
|
|
68
|
+
smithery automation create <name> # Create a new automation from a template
|
|
69
|
+
smithery automation list # List all automations
|
|
70
|
+
smithery automation get <name> # Show automation details and source code
|
|
71
|
+
smithery automation run <name> [key=value...] # Run an automation with arguments
|
|
72
|
+
smithery automation remove <name> # Delete an automation
|
|
73
|
+
```
|
|
74
|
+
|
|
62
75
|
### Namespaces
|
|
63
76
|
|
|
64
77
|
```bash
|
|
@@ -87,6 +100,11 @@ smithery tool call github create_issue '{"title":"Bug fix","body":"..."}'
|
|
|
87
100
|
smithery skill search "frontend" --json --page 2
|
|
88
101
|
smithery skill add anthropics/frontend-design --agent claude-code
|
|
89
102
|
|
|
103
|
+
# Create and run an automation
|
|
104
|
+
smithery automation init
|
|
105
|
+
smithery automation create create-ticket
|
|
106
|
+
smithery automation run create-ticket title="Bug fix" priority=high
|
|
107
|
+
|
|
90
108
|
# Publish your MCP server URL
|
|
91
109
|
smithery mcp publish "https://my-mcp-server.com" -n myorg/my-server
|
|
92
110
|
```
|