katto-mcp 0.5.2 → 0.5.3
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/index.mjs +3 -3
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -45,7 +45,7 @@ const TOOLS = [
|
|
|
45
45
|
name: "katto_create_clip_job",
|
|
46
46
|
description:
|
|
47
47
|
"Submit a long video (YouTube, Twitch, Vimeo, Rumble, Zoom, Dailymotion) to Katto. Returns a job id; " +
|
|
48
|
-
"the clips finish asynchronously
|
|
48
|
+
"the clips finish asynchronously. Poll katto_get_job with the id until status is 'completed'.",
|
|
49
49
|
inputSchema: {
|
|
50
50
|
type: "object",
|
|
51
51
|
properties: {
|
|
@@ -243,7 +243,7 @@ const ANNOTATIONS = {
|
|
|
243
243
|
// Agent-facing descriptions (when to call, returns, errors, quota cost). Served
|
|
244
244
|
// on tools/list — identical across all sources, enriching the terser inline text.
|
|
245
245
|
const DESCRIPTIONS = {
|
|
246
|
-
katto_create_clip_job: "Submit a long video (YouTube, Twitch, Vimeo, Rumble, Zoom, Dailymotion) for clipping. Consumes 1 video from your monthly quota — check katto_get_usage first. Clips are produced asynchronously
|
|
246
|
+
katto_create_clip_job: "Submit a long video (YouTube, Twitch, Vimeo, Rumble, Zoom, Dailymotion) for clipping. Consumes 1 video from your monthly quota — check katto_get_usage first. Clips are produced asynchronously; returns a job id, then poll katto_get_job until status is 'completed'. Fails if the URL is unsupported or the video is over 90 minutes.",
|
|
247
247
|
katto_get_job: "Read-only. Get the status, progress and clips of a job by id. When status is 'completed', 'clips' holds the finished 9:16 MP4 urls and caption (SRT) urls; while processing, clips is empty. Returns 404 for an unknown id.",
|
|
248
248
|
katto_list_jobs: "Read-only. List your recent jobs, newest first. Paginate with 'cursor' (pass the previous next_cursor); optional 'status' filter. Returns { jobs: [{id, status, source, created_at, completed_at}], next_cursor }.",
|
|
249
249
|
katto_get_clips: "Read-only convenience: just the finished clips of a job (9:16 MP4 urls + caption SRT urls + title + virality score). Returns an empty list while the job is still processing.",
|
|
@@ -283,7 +283,7 @@ const CLIP_LENGTHS = [
|
|
|
283
283
|
{ value: '90_180', label: '90 to 180 seconds' },
|
|
284
284
|
];
|
|
285
285
|
|
|
286
|
-
const server = new Server({ name: "katto", version: "0.5.
|
|
286
|
+
const server = new Server({ name: "katto", version: "0.5.3" }, { capabilities: { tools: {} } });
|
|
287
287
|
|
|
288
288
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS_LISTED }));
|
|
289
289
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "katto-mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"mcpName": "io.github.miracleweasel/katto-mcp",
|
|
5
5
|
"description": "AI video clipping MCP server: turn long videos, podcasts and Twitch VODs into scored, captioned 9:16 shorts from Claude, Cursor, ChatGPT and any MCP client.",
|
|
6
6
|
"type": "module",
|