@transloadit/mcp-server 0.2.0 → 0.2.1

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 +37 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -32,6 +32,16 @@ claude mcp add --transport stdio transloadit \
32
32
  -- npx -y @transloadit/mcp-server stdio
33
33
  ```
34
34
 
35
+ For non-interactive runs (e.g. `claude -p`), explicitly allow MCP tools. Claude MCP
36
+ tools are named `mcp__<server>__<tool>`, so `mcp__transloadit__*` allows all tools
37
+ from this server.
38
+
39
+ ```bash
40
+ claude -p "List templates" \
41
+ --allowedTools mcp__transloadit__* \
42
+ --output-format json
43
+ ```
44
+
35
45
  Codex CLI:
36
46
 
37
47
  ```bash
@@ -41,6 +51,15 @@ codex mcp add transloadit \
41
51
  -- npx -y @transloadit/mcp-server stdio
42
52
  ```
43
53
 
54
+ To allowlist tools, add `enabled_tools` for the server in `~/.codex/config.toml`:
55
+
56
+ ```toml
57
+ [mcp_servers.transloadit]
58
+ command = "npx"
59
+ args = ["-y", "@transloadit/mcp-server", "stdio"]
60
+ enabled_tools = ["transloadit_list_templates"]
61
+ ```
62
+
44
63
  Gemini CLI:
45
64
 
46
65
  ```bash
@@ -49,6 +68,24 @@ gemini mcp add --scope user transloadit npx -y @transloadit/mcp-server stdio \
49
68
  --env TRANSLOADIT_SECRET=...
50
69
  ```
51
70
 
71
+ To allowlist tools, set `includeTools` for the server in `~/.gemini/settings.json`:
72
+
73
+ ```json
74
+ {
75
+ "mcpServers": {
76
+ "transloadit": {
77
+ "command": "npx",
78
+ "args": ["-y", "@transloadit/mcp-server", "stdio"],
79
+ "env": {
80
+ "TRANSLOADIT_KEY": "...",
81
+ "TRANSLOADIT_SECRET": "..."
82
+ },
83
+ "includeTools": ["transloadit_list_templates"]
84
+ }
85
+ }
86
+ }
87
+ ```
88
+
52
89
  Cursor (`~/.cursor/mcp.json`):
53
90
 
54
91
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transloadit/mcp-server",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Transloadit MCP server",
5
5
  "type": "module",
6
6
  "license": "MIT",