@transloadit/mcp-server 0.0.1 → 0.0.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 +45 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @transloadit/mcp-server
|
|
2
|
+
|
|
3
|
+
Transloadit MCP server (Streamable HTTP + stdio).
|
|
4
|
+
|
|
5
|
+
This package provides a thin MCP wrapper around `@transloadit/node` for creating, validating, and
|
|
6
|
+
monitoring Transloadit Assemblies with a delightful, agent-friendly DX.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @transloadit/mcp-server
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Quick start (HTTP)
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
transloadit-mcp http --host 127.0.0.1 --port 5723
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Quick start (stdio)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
transloadit-mcp stdio
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Environment
|
|
27
|
+
|
|
28
|
+
- `TRANSLOADIT_KEY` / `TRANSLOADIT_SECRET` (required for API requests, and for accounts enforcing
|
|
29
|
+
signature auth)
|
|
30
|
+
- `TRANSLOADIT_MCP_TOKEN` (optional for static bearer auth on non-localhost HTTP)
|
|
31
|
+
- `TRANSLOADIT_API` (optional, defaults to api2.transloadit.com)
|
|
32
|
+
|
|
33
|
+
## Tool surface
|
|
34
|
+
|
|
35
|
+
See the design spec for all tools, inputs, and outputs:
|
|
36
|
+
|
|
37
|
+
- `docs/mcp-spec.md`
|
|
38
|
+
- `docs/mcp-todo.md`
|
|
39
|
+
|
|
40
|
+
## Notes
|
|
41
|
+
|
|
42
|
+
- Hosted MCP calls use bearer tokens. If the account enforces signature auth, you must still provide
|
|
43
|
+
`TRANSLOADIT_KEY` + `TRANSLOADIT_SECRET`.
|
|
44
|
+
- URL inputs default to safe handling; base64 inputs have explicit limits to keep requests small.
|
|
45
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transloadit/mcp-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Transloadit MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"directory": "packages/mcp-server"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
|
-
"dist"
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
18
19
|
],
|
|
19
20
|
"main": "./dist/index.js",
|
|
20
21
|
"types": "./dist/index.d.ts",
|