@transloadit/mcp-server 0.3.8 → 0.3.9

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 +20 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -28,6 +28,26 @@ npx -y @transloadit/mcp-server http --host 127.0.0.1 --port 5723
28
28
 
29
29
  When binding HTTP mode to non-localhost hosts, `TRANSLOADIT_MCP_TOKEN` is required.
30
30
 
31
+ ### Docker
32
+
33
+ ```bash
34
+ docker run -i --rm \
35
+ -e TRANSLOADIT_KEY=MY_AUTH_KEY \
36
+ -e TRANSLOADIT_SECRET=MY_SECRET_KEY \
37
+ ghcr.io/transloadit/mcp-server:latest
38
+ ```
39
+
40
+ For HTTP mode via Docker, expose the port:
41
+
42
+ ```bash
43
+ docker run --rm \
44
+ -e TRANSLOADIT_KEY=MY_AUTH_KEY \
45
+ -e TRANSLOADIT_SECRET=MY_SECRET_KEY \
46
+ -p 5723:5723 \
47
+ ghcr.io/transloadit/mcp-server:latest \
48
+ transloadit-mcp http --host 0.0.0.0 --port 5723
49
+ ```
50
+
31
51
  ### `TRANSLOADIT_MCP_TOKEN` explained
32
52
 
33
53
  `TRANSLOADIT_MCP_TOKEN` is a self-hosted MCP transport token. It protects your own HTTP MCP endpoint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transloadit/mcp-server",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Transloadit MCP server",
5
5
  "keywords": [
6
6
  "mcp",
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "dependencies": {
64
64
  "@modelcontextprotocol/sdk": "^1.25.3",
65
- "@transloadit/node": "^4.7.4",
65
+ "@transloadit/node": "^4.7.5",
66
66
  "@transloadit/sev-logger": "^0.1.9",
67
67
  "express": "^4.21.2",
68
68
  "prom-client": "^15.1.3",