bittensor_video
Generate videos from text prompts using Bittensor's decentralized AI network. This tool creates MP4 files by describing your desired video content.
Instructions
Text-to-video generation via Bittensor subnet 18. Async — polls until ready (up to 3 min). Returns an MP4 URL. Cost: $2.00 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Video description to generate |
Implementation Reference
- src/index.ts:300-308 (handler)The handler for bittensor_video tool, which initiates an async job and polls for the result.
case "bittensor_video": { const job = (await callGateway({ route: "bittensor-video", prompt: a.prompt })) as Record<string, unknown>; if (job.status === "pending" && typeof job.job_id === "string") { result = await pollJob(job.job_id); } else { result = job; } break; } - src/index.ts:198-209 (schema)The MCP tool definition for bittensor_video including its schema.
{ name: "bittensor_video", description: "Text-to-video generation via Bittensor subnet 18. Async — polls until ready (up to 3 min). Returns an MP4 URL. Cost: $2.00 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "Video description to generate" }, }, required: ["prompt"], }, },