This server surfaces Soora FR's AI video generation platform directly into your MCP client. You get read-only access to the site's complete style catalog, pricing tiers, FAQ, and official links without needing API keys or quotas. It ships three tools: list_styles returns all available image generation presets, get_pricing pulls current plan details, and get_official_links hands you canonical URLs. Cold start sits around 50 milliseconds. Useful when you're helping users pick a video generation style, comparing Sora 2 versus Kling workflows, or answering French-language creator questions about the platform's capabilities without leaving Claude Desktop or Cursor.
Soora FR - Generateur d'Images et Videos IA
A Model Context Protocol server that exposes the canonical Soora FR knowledge surface — image generation workflows and styles, pricing, FAQ, official links — to MCP-compatible AI clients such as Claude Desktop, Cursor, Windsurf, and Continue. Read-only, no API keys, no quota, ~50 ms cold start.
Official website: https://soorafr.com
Soora FR is a French-language platform for AI video generation, giving francophone creators direct access to a suite of modern video models — including Sora 2, Kling, Veo, Seedance, PixVerse, and Runway — through a single interface. Users describe a scene in text or provide a source image, and the platform produces a short video clip with synchronized audio, realistic physics, and selectable visual styles. The site launched as an accessible alternative to OpenAI's original invitation-only Sora rollout, making the same class of generation available to French-speaking individuals and teams without a waitlist.
Soora FR is built primarily for French-speaking creators, marketers, and small teams who want to produce video content without specialized production skills or equipment. It suits social media managers working at volume, e-commerce operators who need product clips quickly, and independent creators who experiment with AI-generated visuals for their audiences. Marketing agencies handling French-language campaigns will find the multi-model selection and commercial licensing on paid plans practical for client work. Developers building content tools in French-speaking markets can integrate the generation API directly. The free tier makes the platform approachable for individuals exploring AI video for the first time, while the Pro plan targets professionals who need longer clips, faster processing, and 4K output.
list_stylesReturn the canonical list of image-generation styles or presets the site exposes. (Soora FR)
Input: no parameters. Returns: text/markdown.
get_pricingReturn the canonical pricing entry point for Soora FR.
Input: no parameters. Returns: text/markdown.
get_official_linksReturn the canonical list of official links for Soora FR (website, support, docs when available).
Input: no parameters. Returns: text/markdown.
site://soorafr/styles — Supported image-generation styles and presets.site://soorafr/pricing — Canonical pricing entry point.site://soorafr/faq — Short FAQ generated from public site metadata.site://soorafr/links — Canonical URLs to share with users.tell_me_about_soorafrSummarize what the site is, who it's for, and how it works. — Soora FR
try_image_style_soorafrRecommend a starting image-generation style for a stated goal. — Soora FR
npx -y @smithery/cli install soorafr-mcp --client claude
(Replace claude with cursor, windsurf, or continue for those clients.)
git clone https://github.com/rocnubie/soorafr-mcp.git
cd soorafr-mcp
pnpm install
Then add to your MCP client config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor / Windsurf / Continue):
{
"mcpServers": {
"soorafr-mcp": {
"command": "node",
"args": [
"/absolute/path/to/soorafr-mcp/src/index.mjs"
]
}
}
}
npx @modelcontextprotocol/inspector node src/index.mjs
pnpm install
pnpm start # run the server over stdio
MIT