Synclub MCP Server

Official SynClub Model Context Protocol (MCP) Server that enables powerful AI generation capabilities including text-to-speech, voice cloning, video

Local serverstdioPython

What is the Synclub MCP server?

Most AI and media services work still happens through a UI a human drives. Synclub MCP server moves it into the conversation instead. Official SynClub Model Context Protocol (MCP) Server that enables powerful AI generation capabilities including text-to-speech, voice cloning, video generation, image generation, and more. Compatible with MCP clients like Claude Desktop.

The short version

  • Text-to-Speech — Convert text to natural speech with multiple voice options
  • Voice Cloning — Clone voices from audio samples
  • Video Generation — Generate videos from text prompts or images
  • Image Generation — Create images from text descriptions
  • Image Recognition — Analyze and understand image content
  • Background Removal — Automatically remove backgrounds from images

The tools it exposes

The server publishes 14 tools. What each one is for:

  • minimax_text_to_audio — Convert text to speech with customizable voice settings
  • minimax_generate_video — Minimax generate videos
  • minimax_voice_clone — Clone voices from audio files
  • minimax_text_to_image — Generate images from text prompts
  • kling_generate_text_to_video — Start generate videos from text descriptions using Kling models
  • kling_query_ttv_task — Get the generate result from generate_text_to_video tool
  • kling_generate_image_to_video — Start generate videos from images with text prompts using Kling models
  • kling_query_gttv_task — Get the generate result from generate_image_to_video tool
  • openai_image_recognition — Analyze and recognize image content
  • openai_edit_image — Edit images based on a text prompt
  • remove_bg — Automatically remove image backgrounds
  • hd_restore — Enhance image quality and resolution

What it needs from you

Configuration is passed through the environment: SYNCLUB_MCP_API. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

and on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

How it compares

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Synclub's toolset — minimax_text_to_audio, minimax_generate_video, minimax_voice_clone and 11 more — is a fair guide to whether it matches your workflow. It is maintained by 520chatgpt01; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Synclub.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
minimax_text_to_audioConvert text to speech with customizable voice settings
minimax_generate_videoMinimax generate videos
minimax_voice_cloneClone voices from audio files
minimax_text_to_imageGenerate images from text prompts
kling_generate_text_to_videoStart generate videos from text descriptions using Kling models
kling_query_ttv_taskGet the generate result from generate_text_to_video tool
kling_generate_image_to_videoStart generate videos from images with text prompts using Kling models
kling_query_gttv_taskGet the generate result from generate_image_to_video tool
openai_image_recognitionAnalyze and recognize image content
openai_edit_imageEdit images based on a text prompt
remove_bgAutomatically remove image backgrounds
hd_restoreEnhance image quality and resolution
openai_generate_imageGenerate images using alternative models
ai_searchPerform AI-powered search queries

How to install the Synclub MCP server

{
  "mcpServers": {
    "synclub": {
      "command": "uvx",
      "args": ["and"],
      "env": {
        "SYNCLUB_MCP_API": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SYNCLUB_MCP_APIConfiguration value read at startup.Optional

Example prompts to try

  • Use Synclub to minimax text to audio.
  • Use Synclub to minimax generate video.
  • Use Synclub to minimax voice clone.

Frequently asked questions

It connects Synclub to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (minimax_text_to_audio, minimax_generate_video, minimax_voice_clone, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Synclub directly.