katto-mcp 0.3.0 → 0.3.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 (3) hide show
  1. package/README.md +15 -4
  2. package/index.mjs +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,12 +2,19 @@
2
2
 
3
3
  MCP server for [Katto](https://katto.tech) — turn long videos into scored, captioned 9:16 clips from any MCP client (Claude Desktop, Cursor, Claude Code, ChatGPT, …).
4
4
 
5
- It runs locally over stdio and calls the Katto REST API with your key. Nothing to host.
5
+ Two ways to connect:
6
6
 
7
- ## Setup
7
+ ## Hosted (zero-install, recommended)
8
8
 
9
- 1. Create an API key at **[katto.tech/dashboard/api-keys](https://katto.tech/dashboard/api-keys)**.
10
- 2. Add the server to your MCP client config:
9
+ Point any OAuth-capable MCP client (ChatGPT, Claude web/desktop, MCP Inspector) at the hosted endpoint and sign in with your Katto account — the key never touches your disk, and you can revoke access anytime:
10
+
11
+ ```
12
+ https://mcp.katto.tech/mcp (Streamable HTTP · OAuth)
13
+ ```
14
+
15
+ ## Local (npx)
16
+
17
+ For Cursor, CI and scripts. Create an API key at **[katto.tech/dashboard/api-keys](https://katto.tech/dashboard/api-keys)**, then add the server to your MCP client config:
11
18
 
12
19
  ```json
13
20
  {
@@ -21,6 +28,8 @@ It runs locally over stdio and calls the Katto REST API with your key. Nothing t
21
28
  }
22
29
  ```
23
30
 
31
+ The hosted endpoint above also accepts `Authorization: Bearer sk_live_...` directly for key-based clients.
32
+
24
33
  ## Tools
25
34
 
26
35
  - **`katto_create_clip_job(url, config?)`** — submit a long video (YouTube, Twitch, Vimeo, Rumble, Zoom, Dailymotion). Returns a job id.
@@ -29,6 +38,8 @@ It runs locally over stdio and calls the Katto REST API with your key. Nothing t
29
38
  - **`katto_get_clips(id)`** — just the finished clips of a job.
30
39
  - **`katto_get_transcript(id)`** — the job's timestamped transcript segments (`[{ start, end, text }]`).
31
40
  - **`katto_get_usage()`** — your plan and remaining monthly video quota.
41
+ - **`katto_cancel_job(id)`** — cancel a running job and refund the monthly video slot.
42
+ - **`katto_get_account()`** — the connected account, this key's scopes, and quota.
32
43
 
33
44
  Jobs draw from your Katto plan's monthly video quota (25 on Creator, 2 on Free). Videos up to 90 minutes. The underlying REST API also supports `Idempotency-Key` safe retries and read-only scoped keys — see the [docs](https://katto.tech/docs/api).
34
45
 
package/index.mjs CHANGED
@@ -137,7 +137,7 @@ const TOOLS = [
137
137
  },
138
138
  ];
139
139
 
140
- const server = new Server({ name: "katto", version: "0.3.0" }, { capabilities: { tools: {} } });
140
+ const server = new Server({ name: "katto", version: "0.3.1" }, { capabilities: { tools: {} } });
141
141
 
142
142
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
143
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "katto-mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "mcpName": "io.github.miracleweasel/katto-mcp",
5
5
  "description": "MCP server for Katto — turn long videos into scored, captioned 9:16 clips from any MCP client (Claude, Cursor, ...).",
6
6
  "type": "module",