@vtxmacro/cli 0.1.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 +35 -0
- package/bin/vtx-mcp.js +1109 -0
- package/bin/vtx.js +15375 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# VTX Macro CLI
|
|
2
|
+
|
|
3
|
+
Command-line and MCP access for VTX Macro automation.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @vtxmacro/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Configure
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
export VTX_API_URL="https://api.vtxmacro.com"
|
|
15
|
+
export VTX_PROFILE_ID="<profile-id>"
|
|
16
|
+
vtx auth login --scopes read,bot:control
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## CLI
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
vtx --json auth whoami
|
|
23
|
+
vtx --json bots status
|
|
24
|
+
vtx --profile <profile-id> runtime run --follow
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## MCP
|
|
28
|
+
|
|
29
|
+
Configure your MCP-compatible agent app to start:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
vtx-mcp
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The CLI and MCP server use the same saved token and environment variables.
|