This is a Model Context Protocol (MCP) server that provides access to InVideo AI's powerful video creation capabilities. Generate professional videos from text prompts with AI-generated visuals, voiceovers, and subtitles.
POST requests to: https://invideo.mcp.majewscy.tech/
Remote MCP Server: https://mcp.invideo.io/sse
curl -X POST https://invideo.mcp.majewscy.tech/ \
-H 'Content-Type: application/json' \
-H 'X-API-Key: your-api-key-here' \
-d '{
"tool": "generate_video",
"inputs": {
"prompt": "Create a 30-second video about AI technology trends",
"style": "modern",
"voiceover": true,
"subtitles": true
}
}'
All API requests must include an X-API-Key header with a valid API key.
Required header: X-API-Key: your-mcp-api-key
When InVideo releases API authentication, your paid plan benefits can be activated by:
.env file:
INVIDEO_API_TOKEN - Your InVideo API tokenINVIDEO_ACCOUNT_ID - Your account IDINVIDEO_WORKSPACE_ID - For team/enterprise plansCurrent Status: ⚠️ Using free Beta access (no InVideo credentials configured)
GET /health - Returns server status (no authentication required)
To use this MCP with Claude Desktop:
https://mcp.invideo.io/sse{
"mcpServers": {
"mcp_invideo_ai": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.invideo.io/sse"
]
}
}
}