New: the Doodaro MCP server. Make doodle videos from Claude, ChatGPT and Cursor.

See how it works
Doodaro
Developers

Doodle videos, from any chat app or any pipeline.

Doodaro exposes the whole studio through a REST API and an MCP server. Ask your assistant for a video, or wire Doodaro into your own tools and let it produce a channel's worth of content on schedule.

Blueprint Worlds illustration of a creator inside a technical drawing
MCP server

Say it in chat. Doodaro draws it.

MCP is the open protocol that lets AI assistants use tools. Install the Doodaro server once and every MCP-compatible app can script, illustrate, render and publish videos in your workspace.

Add it to your assistant

Paste this into your assistant's MCP configuration. Claude Desktop, ChatGPT, Cursor and Windsurf all support it.

{
  "mcpServers": {
    "doodaro": {
      "url": "https://mcp.doodaro.com",
      "headers": { "Authorization": "Bearer DOODARO_API_KEY" }
    }
  }
}

Then just ask

  • "Make a 90 second whiteboard explainer about compound interest in the Clearboard style and schedule it for Monday 9am."
  • "Turn this blog post into a vertical chalkboard video for Shorts."
  • "Generate a thumbnail in my brand template for the last video."

Every step runs in your Doodaro workspace with your templates and your minutes. Nothing is shared with the assistant beyond the request.

Tools the server exposes

  • create_storyTurn a topic or script into scenes with narration.
  • list_templatesBrowse all 37 styles and your own templates.
  • generate_imageMake an on-brand illustration for any scene, thumbnail or post.
  • render_videoRender the project in 16:9, 9:16 or 1:1 and return the MP4.
  • schedule_publishQueue the finished video with a title, description and slot.
REST API

One request from script to scheduled upload

The API mirrors the studio: create a project, generate scenes, render and publish. Webhooks tell you when a render finishes. Automations let you run the same request on a schedule.

  • JSON over HTTPS with bearer keys per workspace
  • Idempotent renders, so retries never double-bill
  • Webhooks for render and publish events
  • Same minute metering as the studio
curl -X POST https://api.doodaro.com/v1/videos \
  -H "Authorization: Bearer $DOODARO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "template": "clearboard",
    "format": "landscape",
    "script": "How a seed becomes a tree...",
    "publish": { "channel": "youtube", "at": "2026-09-15T09:00:00Z" }
  }'
Automations

Content pipelines that run without you

Combine a source, a template and a schedule. Doodaro does the rest, every day or every week.

Topic list to channel

Give Doodaro a spreadsheet of topics. Each one becomes a scripted, drawn, titled video queued to its own slot.

Blog to Shorts

Point an automation at your RSS feed. New posts become vertical explainers in your channel style within the hour.

Docs to product videos

Connect your documentation. When a page changes, the matching how-it-works video is redrawn and republished.

Developer questions

What is MCP and why does it matter?

The Model Context Protocol is an open standard that lets AI assistants call external tools. With the Doodaro MCP server installed, Claude, ChatGPT, Cursor and other MCP-compatible apps can create stories, generate images and render videos on your behalf, using your workspace and your templates.

Do I need to write code to use the MCP server?

No. Add the Doodaro server to your assistant once, then ask in plain language. Developers can also call the REST API directly for pipelines and automations.

Which plan includes API access?

Pro includes API and MCP access. Creator can add it. Usage is metered in the same video minutes as the studio, so there are no surprise bills.

Can I publish through the API?

Yes. The same publishing endpoints the studio uses are available, so an automation can render a video, write its title and description, and schedule it to YouTube or social.