pup-recorder-mcp 0.2.3 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +13 -12
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## NAME
4
4
 
5
- pup-recorder-mcp - MCP server wrapping pup(1)
5
+ pup-recorder-mcp - MCP server for pup-recorder
6
6
 
7
7
  ## SYNOPSIS
8
8
 
@@ -25,25 +25,26 @@ npx --yes pup-recorder-mcp
25
25
  **pup-recorder**
26
26
 
27
27
  ```
28
- source string required
29
- width number default 1920
30
- height number default 1080
31
- fps number default 30
32
- duration number default 5
33
- outDir string default "out"
34
- formats string[] default ["mp4"], allowed: mp4, webm
35
- withAudio boolean default false
36
- useInnerProxy boolean default false
28
+ source string required
29
+ width number default: 1920
30
+ height number default: 1080
31
+ fps number default: 30
32
+ duration number default: 5
33
+ outFile string default: output.mp4
34
+ withAudio boolean default: false
35
+ deterministic boolean default: false
36
+ useInnerProxy boolean default: false
37
37
  ```
38
38
 
39
- Returns `{ options, files: { mp4?, webm?, cover } }`.
39
+ Returns `{ options, written, jank, outFile, audio? }`.
40
40
 
41
41
  ## ENVIRONMENT
42
42
 
43
43
  ```
44
- PUP_LOG_LEVEL 0-3, default 2
44
+ PUP_LOG_LEVEL 0-3
45
45
  PUP_USE_INNER_PROXY 1=on
46
46
  PUP_DISABLE_GPU 1=on
47
+ PUP_DETERMINISTIC 1=on
47
48
  ```
48
49
 
49
50
  ## SEE ALSO
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pup-recorder-mcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "MCP server for pup-recorder.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@modelcontextprotocol/sdk": "latest",
26
26
  "@typescript/native-preview": "latest",
27
- "pup-recorder": "0.1.17",
27
+ "pup-recorder": "0.2.4",
28
28
  "zod": "latest"
29
29
  },
30
30
  "scripts": {