AI-assisted short video creation. User selects topic, aspect ratio, and duration. AI guides through video generation using the user's own API key (Kling/Doubao etc.). One-time payment ¥16.90 per creation.
Design & media
StoryShort
Try itCreate, render and publish AI videos (faceless, UGC ads, movie maker, podcast, music video...) with StoryShort — plus standalone AI images and clips. Full option discovery (voices, caption themes, styles, models with credit costs), exact price quotes before spending, and direct publishing to TikTok, YouTube and Instagram.
What it does
Create, render and publish AI videos (faceless, UGC ads, movie maker, podcast, music video...) with StoryShort — plus standalone AI images and clips. Full option discovery (voices, caption themes, styles, models with credit costs), exact price quotes before spending, and direct publishing to TikTok, YouTube and Instagram.
The skill document
StoryShort — AI video creation for agents
StoryShort (https://storyshort.ai) turns prompts and scripts into finished short-form videos: script writing, AI visuals, voiceover, captions, rendering and publishing to connected social accounts. This skill drives the StoryShort MCP server over plain HTTP.
Setup
- Create an account at https://storyshort.ai (Free plan works).
- Generate an API key in Settings → API (https://storyshort.ai/app/settings/api).
- Export it:
STORYSHORT_API_KEY=ss_...
All calls go to one endpoint. Define this helper once per session:
ss() { # usage: ss ''
local args="${2:-null}"; [ "$args" = "null" ] && args="{}"
curl -s -X POST https://api.storyshort.ai/mcp \
-H "Authorization: Bearer $STORYSHORT_API_KEY" \
-H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \
-d "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"$1\",\"arguments\":$args}}" \
| sed -n 's/^data: //p' | jq -r '.result.content[0].text' | jq .
}
(Any MCP-capable client can instead add https://api.storyshort.ai/mcp directly as a streamable-HTTP server — OAuth or the same Bearer key.)
Discover before you spend
Everything is discoverable; never guess ids or prices:
ss get_account # plan + remaining credits — check this first
ss list_video_tools # 20+ tools: faceless, ugc ads, movie maker, podcast, asmr, documentary...
ss get_video_tool '{"tool":"script_to_video"}' # exact options for one tool
ss list_voices '{"query":"deep male"}'
ss list_caption_themes # 33 styles: beast, neon, glass, comic, elegant...
ss list_image_styles
ss list_media_options # media types + AI video tiers with credits per clip
ss list_music '{"query":"epic"}'
ss list_image_models # standalone image models + costs
ss list_video_models # Sora, Veo, Kling, Seedance 2.5 + per-second pricing
ss list_connected_accounts # TikTok / YouTube / Instagram account ids for publishing
Create a video (always estimate first)
ss estimate_credits '{"tool":"script_to_video","script":"","mediaType":"images"}'
ss create_video '{"tool":"script_to_video","script":"","title":"My video","mediaType":"images","imageQuality":"basic","captionTheme":"neon","voice":"openai_ash","aspectRatio":"9:16"}'
Prompt-driven tools take "prompt" + "duration" (30/60/120/180 seconds) instead of "script". Other useful params: imageStyle (id or "auto"), videoTier (pvideo|pvideo-1080|seedance|seedance25 when mediaType is "videos"), language, dynamism, brandKitId, character, references, knowledgeSources.
Generation is asynchronous (1–5 minutes). Poll every 20–30 s:
ss get_video '{"videoId":""}' # status: queued -> processing -> completed | failed
status: "completed" means the video is built and editable (share editorUrl with the user). For the final MP4:
ss render_video '{"videoId":""}' # async — poll get_video until renderStatus is "completed" and url is set
Publish to social accounts
ss publish_video '{"videoId":"","accountIds":[""],"title":"Caption here","privacyStatus":"SELF_ONLY"}'
ss schedule_publish '{"videoId":"","accounts":[{"id":"","platform":"tiktok"}],"scheduledTime":"2026-09-01T18:00:00Z"}'
publish_video renders automatically if needed (can take minutes). Publishing posts to real accounts — confirm with the user before calling it, and prefer privacyStatus: "SELF_ONLY" on TikTok for tests.
Standalone images and clips
ss generate_image '{"prompt":"...","model":"nano-banana-2","aspectRatio":"9:16"}'
ss generate_clip '{"prompt":"...","model":"kling-v3","duration":5}'
ss get_media '{"mediaId":""}' # poll until status "completed", then use .url
Image-to-image: pass "imageInput":[""]. A generated image URL can seed a video via create_video's "startingImageUrl".
Workflow tips
- Call
get_accountfirst; refuse to start work that costs more credits than the balance and point the user to the upgrade URL instead. - Always quote the
estimate_creditsprice to the user beforecreate_videoon expensive configs (mediaType"videos", movie maker, podcast). - One video at a time: create, poll to completion, then move on. Do not fire parallel create_video calls unless the user asked for variants (
numberOfVideoshandles that server-side). - Titles you set are kept; leave
titleout to get an auto-generated one. - Errors come back as readable text in the tool result (e.g. "Not enough credits (credits_missing)") — relay them, don't retry blindly.
Docs: https://storyshort.ai/mcp · REST API: https://storyshort.ai/api-docs · Support: https://storyshort.ai/contact
Related skills
Create viral faceless short-form video scripts, scene prompts, captions, hashtags, and publishing plans. Use when users want to make Instagram Reels, TikTok videos, or YouTube Shorts faster with AI.
Write short-form video scripts (TikTok/Reels/Shorts) for any audience and topic with proper hook, arc, and CTA.
Turn final short-video scripts into ready-to-edit voiceover audio for TikTok, Reels, YouTube Shorts, product reviews, hook lines, explainers, and ads. This AI voice over generator, AI voice reader, and text-to-speech voiceover workflow makes scripts speakable, helps choose a suitable voice and supported language, and tunes pacing, pauses, names, numbers, brands, and pronunciation. Review the current price estimate, create MP3 voiceover audio, compare the returned duration with the target edit, and place the narration into short-form video, captions, avatar, lip-sync, and publishing workflows.
Generate the storyboard images for a short-form video job. Walks the image_prompts[] array from a job's input.json, calls Google's Gemini image model to rend...
Turn long videos (podcasts, webinars, streams) into vertical 9:16 clips with subtitles, re-cut them, and publish them to TikTok, Instagram Reels and YouTube Shorts via the OpenShorts API or MCP server. Use when the user wants to clip a video into shorts, find the best moments of a video, restyle captions on a clip, re-cut a clip, schedule or post clips to social platforms, or automate a clipping pipeline.