The VideoShipper MCP server lets any AI model build and render real videos from designer motion templates. When someone asks their AI to make a video, the model can pick templates, fill them in, and export a finished MP4, all through your account.
VideoShipper supports OAuth, so connecting is the same as signing in with Google. In Claude, open Settings → Connectors → Add custom connector, paste the server URL, and click Connect:
https://videoshipper.com/api/mcp
The same one-click flow works in Claude Desktop, VS Code, and any other MCP client with OAuth support. Your AI never sees your password, and you can disconnect anytime from the client's settings.
For scripts, servers, and clients without OAuth, mint a long-lived key in Settings and send it as a header:
{
"mcpServers": {
"videoshipper": {
"url": "https://videoshipper.com/api/mcp",
"headers": { "Authorization": "Bearer vsk_live_YOUR_KEY" }
}
}
}For clients that only speak stdio, bridge with mcp-remote:
{
"mcpServers": {
"videoshipper": {
"command": "npx",
"args": [
"mcp-remote", "https://videoshipper.com/api/mcp",
"--header", "Authorization:Bearer vsk_live_YOUR_KEY"
]
}
}
}Any agent that speaks HTTP can call the same tools at /api/v1/{tool}:
curl -X POST https://videoshipper.com/api/v1/render_video \
-H "Authorization: Bearer vsk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{ "projectId": "…", "quality": "HD" }'API access is included on every paid plan. Renders spend prepaid credits: 1 credit for a 1080p or 720p export, 2 for 4K, plus 1 per extra minute. You never pay more than the credits you hold, so there are no surprise bills. See pricing.