MCP server for OpenAI Sora AI video generation
{
"mcpServers": {
"io-github-acedatacloud-mcp-sora": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for OpenAI Sora AI video generation
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 0 days ago. 1 stars.
Will it work with my client?
Transport: . Compatibility not confirmed.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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)