Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sora": {
"url": "https://sora.mcp.acedata.cloud/mcp",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for AI video generation using Sora through the AceDataCloud API.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-sora' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-sora against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / entertainment
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
The official MCP server implementation for the Perplexity API Platform
Self-hosted URL- and file-to-Markdown service for humans and AI agents - web pages, documents, images, audio, YouTube. PWA + REST + MCP + Claude Code skill, Reddit-aware, refreshable share links.
Dynamic problem-solving through sequential thought chains
MCP Security Weekly
Get CVE alerts and security updates for io.github.AceDataCloud/mcp-sora and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for AI video generation using Sora through the AceDataCloud API.
Generate AI videos directly from Claude, VS Code, or any MCP-compatible client.
| Tool | Description |
|---|---|
sora_generate_video | Generate an AI video from a text prompt using Sora. |
sora_generate_video_from_image | Generate an AI video from reference images using Sora (Image-to-Video). |
sora_generate_video_with_character | Generate an AI video featuring a character from a reference video. |
sora_generate_video_async | Generate an AI video asynchronously with callback notification. |
sora_generate_video_v2 | Generate an AI video using Sora Version 2 (partner channel). |
sora_generate_video_v2_async | Generate an AI video asynchronously using Sora Version 2 with callback. |
sora_get_task | Query the status and result of a video generation task. |
sora_get_tasks_batch | Query multiple video generation tasks at once. |
sora_list_models | List all available Sora models and their capabilities. |
sora_list_actions | List all available Sora API actions and corresponding tools. |
AceDataCloud hosts a managed MCP server — no local installation required.
Endpoint: https://sora.mcp.acedata.cloud/mcp
All requests require a Bearer token. Use the API token from Step 1.
Connect directly on Claude.ai with OAuth — no API token needed:
https://sora.mcp.acedata.cloud/mcpAdd to your config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"sora": {
"type": "streamable-http",
"url": "https://sora.mcp.acedata.cloud/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
Add to your MCP config (.cursor/mcp.json or .windsurf/mcp.json):
{
"mcpServers": {
"sora": {
"type": "streamable-http",
"url": "https://sora.mcp.acedata.cloud/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
Add to your VS Code MCP config (.vscode/mcp.json):
{
"servers": {
"sora": {
"type": "streamable-http",
"url": "https://sora.mcp.acedata.cloud/mcp",
"headers": {
"Aut
... [View full README on GitHub](https://github.com/AceDataCloud/MCPSora#readme)