@mixmake/cli 0.1.0 → 0.1.2
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 +37 -13
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -1,31 +1,38 @@
|
|
|
1
|
-
# MixMake CLI
|
|
1
|
+
# MixMake CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Official command-line client for MixMake MCP.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
It handles MCP initialize/session details for common workflows:
|
|
6
|
+
- get API key
|
|
7
|
+
- transcribe audio
|
|
8
|
+
- edit transcript deletions
|
|
9
|
+
- render output
|
|
10
|
+
- run diagnostics
|
|
11
|
+
|
|
12
|
+
## Quick start
|
|
6
13
|
|
|
7
14
|
```bash
|
|
8
|
-
|
|
15
|
+
npx @mixmake/cli@latest doctor
|
|
9
16
|
```
|
|
10
17
|
|
|
11
18
|
## Commands
|
|
12
19
|
|
|
13
20
|
```bash
|
|
14
|
-
mixmake doctor
|
|
15
|
-
mixmake key --email you@example.com
|
|
16
|
-
mixmake transcribe --audio-url https://example.com/file.mp3
|
|
17
|
-
mixmake transcribe --audio-id <audio_id>
|
|
18
|
-
mixmake edit --transcript-id <id> --delete id1,id2,id3
|
|
19
|
-
mixmake render --transcript-id <id>
|
|
21
|
+
npx @mixmake/cli@latest doctor
|
|
22
|
+
npx @mixmake/cli@latest key --email you@example.com
|
|
23
|
+
npx @mixmake/cli@latest transcribe --audio-url https://example.com/file.mp3
|
|
24
|
+
npx @mixmake/cli@latest transcribe --audio-id <audio_id>
|
|
25
|
+
npx @mixmake/cli@latest edit --transcript-id <id> --delete id1,id2,id3
|
|
26
|
+
npx @mixmake/cli@latest render --transcript-id <id>
|
|
20
27
|
```
|
|
21
28
|
|
|
22
|
-
##
|
|
29
|
+
## Configuration
|
|
23
30
|
|
|
24
31
|
Saved at:
|
|
25
32
|
|
|
26
33
|
`~/.config/mixmake/config.json`
|
|
27
34
|
|
|
28
|
-
|
|
35
|
+
Example:
|
|
29
36
|
|
|
30
37
|
```json
|
|
31
38
|
{
|
|
@@ -35,6 +42,23 @@ Shape:
|
|
|
35
42
|
```
|
|
36
43
|
|
|
37
44
|
Environment overrides:
|
|
38
|
-
|
|
39
45
|
- `MIXMAKE_MCP_URL`
|
|
40
46
|
- `MIXMAKE_API_KEY`
|
|
47
|
+
|
|
48
|
+
## Troubleshooting
|
|
49
|
+
|
|
50
|
+
Run:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npx @mixmake/cli@latest doctor
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
If you contact support, include:
|
|
57
|
+
- request id (if present)
|
|
58
|
+
- command you ran
|
|
59
|
+
- timestamp and endpoint URL
|
|
60
|
+
|
|
61
|
+
## Links
|
|
62
|
+
|
|
63
|
+
- Agent docs: https://mixmake.com/for-agents
|
|
64
|
+
- MCP metadata: https://mixmake.com/server.json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mixmake/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MixMake CLI for MCP happy-path workflows",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
"directory": "cli"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://mixmake.com/for-agents",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"email": "teammixmake@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mixmake",
|
|
18
|
+
"mcp",
|
|
19
|
+
"cli",
|
|
20
|
+
"transcription",
|
|
21
|
+
"audio-editing"
|
|
22
|
+
],
|
|
13
23
|
"bin": {
|
|
14
24
|
"mixmake": "src/index.js"
|
|
15
25
|
},
|