@smithery/cli 4.6.0 → 4.7.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 +0 -18
- package/dist/index.js +261 -311
- package/package.json +5 -5
- package/dist/automation.js +0 -45
package/README.md
CHANGED
|
@@ -59,19 +59,6 @@ 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
|
-
|
|
75
62
|
### Namespaces
|
|
76
63
|
|
|
77
64
|
```bash
|
|
@@ -100,11 +87,6 @@ smithery tool call github create_issue '{"title":"Bug fix","body":"..."}'
|
|
|
100
87
|
smithery skill search "frontend" --json --page 2
|
|
101
88
|
smithery skill add anthropics/frontend-design --agent claude-code
|
|
102
89
|
|
|
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
|
-
|
|
108
90
|
# Publish your MCP server URL
|
|
109
91
|
smithery mcp publish "https://my-mcp-server.com" -n myorg/my-server
|
|
110
92
|
```
|