@demostudio/mcp-server
Allows generating and managing short-form video ads tailored for Instagram Reels, including scene types, subtitles, and music.
Enables creation and scheduling of short-form video ads optimized for TikTok, with customizable templates and voiceover.
Supports generating YouTube Shorts ads from text briefs, with options for music mood, subtitles, and automated scheduling.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@demostudio/mcp-serverGenerate a 30-second Instagram Reel for my SaaS"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@demostudio/mcp-server
MCP server for DemoStudio — lets any MCP-compatible AI assistant (Claude Code, Cursor, Windsurf, etc.) generate short-form video ads directly from a conversation.
What it does
generate_video— Turn a text brief into a rendered Instagram Reel / TikTok / YouTube Shortget_video_status— Check build progress and get the exported video URLlist_capabilities— Show all 5 scene types and 17 Remotion templatescreate_schedule— Set up the Agent to auto-generate videos on a recurring schedule
Related MCP server: hyper-video-service
Requirements
Node.js 18+
A DemoStudio API key — get one at demostudio.xyz/settings
Installation
Claude Code
claude mcp add --transport stdio \
--env DEMOSTUDIO_API_KEY=your_api_key_here \
demostudio \
-- npx -y @demostudio/mcp-serverCursor / Windsurf
Add to your MCP config file (~/.cursor/mcp.json or ~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"demostudio": {
"command": "npx",
"args": ["-y", "@demostudio/mcp-server"],
"env": {
"DEMOSTUDIO_API_KEY": "your_api_key_here"
}
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"demostudio": {
"command": "npx",
"args": ["-y", "@demostudio/mcp-server"],
"env": {
"DEMOSTUDIO_API_KEY": "your_api_key_here"
}
}
}
}Usage examples
Once installed, just talk to your AI assistant naturally:
Generate a 30-second Instagram Reel for my SaaS product.
It's an AI inbox tool called Clearbox. Target: busy founders.
Tone: confident, direct. End with "Try it free at getclearbox.com".
Music: uplifting. Add subtitles.What Remotion templates does DemoStudio support?Check the status of project abc-123.Set up a weekly automated video for my brand.
Product: Kova — project management for remote teams.
URL: https://getkova.com. Calm music. Run every Monday.Tools reference
generate_video
Parameter | Type | Required | Description |
| string | ✓ | Full creative brief — product, audience, tone, scenes, CTA |
| string | URL to crawl for brand colors, logo, description | |
|
| Background music mood | |
| boolean | Burn subtitles onto voiceover scenes (default: true) | |
|
| Preferred voiceover gender |
Returns a project URL to preview and export the video.
get_video_status
Parameter | Type | Required | Description |
| string | ✓ | Project UUID from |
list_capabilities
No parameters. Returns all 17 Remotion templates with descriptions.
create_schedule
Parameter | Type | Required | Description |
|
| ✓ | How often to generate |
| number (0–6) | Day of week (0=Sun). Applies to weekly/biweekly/monthly | |
| string | Text brief added to the Knowledge Base | |
| string | URL to crawl and add to the Knowledge Base | |
|
| Default music for automated runs |
Pricing
DemoStudio is credit-based. New accounts get 500 free credits (enough for ~1 full video). Active accounts receive up to 500 bonus credits every month.
Scene generation: 10 credits
Video export: 400 credits
Automated run: ~700 credits
License
MIT
Maintainer guide — publishing updates
1. Make code changes in src/index.ts
2. Bump the version
npm version patch # 0.1.2 → 0.1.3 (bug fix / small change)
npm version minor # 0.1.2 → 0.2.0 (new tool or renamed tool)
npm version major # 0.1.2 → 1.0.0 (breaking change)3. Publish to npm
npm publish --access publicThe prepublishOnly script runs tsc automatically before publishing.
4. Update server.json — bump both version fields
{
"version": "0.1.3", ← top-level version
"packages": [{
"version": "0.1.3" ← must match npm version
}]
}5. Re-authenticate and publish to MCP registry
The registry JWT expires after ~1 hour. Always re-login before publishing.
# Download the publisher binary (if not already on PATH)
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
# Login via GitHub device flow
./mcp-publisher login github
# → go to https://github.com/login/device and enter the printed code
# Publish
./mcp-publisher publish server.json6. Push to GitHub
git add -A
git commit -m "chore: bump to vX.Y.Z — <what changed>"
git push origin mainNotes
server.json$schemaURL is versioned — only update it if the registry publishes a new schema version (check https://github.com/modelcontextprotocol/registry/blob/main/docs/reference/server-json/CHANGELOG.md).mcpregistry_*files are gitignored — they contain auth tokens and must never be committedThe npm token is stored in
~/.npmrc— re-runnpm set //registry.npmjs.org/:_authToken <token>if it expires
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server that lets AI agents launch and manage Meta + TikTok ad campaigns autonomously. 1 call 30 seconds to launch.Last updated1593MIT
- Flicense-qualityBmaintenanceMCP server for programmatic video generation. Send a prompt, get an MP4.Last updated
- AlicenseAqualityBmaintenanceMCP server for AI-powered image, audio, and video generation, enabling media creation directly from Claude, Cursor, and other MCP clients.Last updated1151MIT
- Alicense-qualityAmaintenanceMCP server that turns any running web app into demo videos, interactive walkthroughs, and marketing captures via one command. Enables AI agents to show their work with regenerated demos on every PR.Last updated211MIT
Related MCP Connectors
MCP server for Google Veo AI video generation
MCP server for Wan AI video generation
MCP server for Kling AI video generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/32bitsret/demostudio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server