Sync MCP Server — Use Sync from Claude, ChatGPT & AI Assistants via MCP
What Is the Sync MCP Server?
The Sync MCP server is an open-source Model Context Protocol server that connects AI assistants — including Claude Desktop, Cursor, and Windsurf — to the Sync lipsync API. Instead of writing code or using the Studio, describe what you want in plain English and your AI assistant handles the API calls for you.
The Sync MCP server auto-generates tools from the Sync API spec at startup. As new API endpoints ship, they become available to your AI assistant automatically — no update needed.
Which AI Clients Support the Sync MCP Server?
The Sync MCP server supports these AI clients, with more being added as the MCP ecosystem grows:
How Do I Set Up the Sync MCP Server?
Setting up the Sync MCP server takes under 2 minutes. You need:
- Node.js 18+ installed on your machine
- A Sync API key — get one from your dashboard settings (see the authentication guide for details)
Choose your AI client below and follow the instructions to get started.
Claude Desktop
Add the following to your claude_desktop_config.json:
Where to find this file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop after saving.
ChatGPT Desktop
ChatGPT Desktop does not yet support MCP servers. Once OpenAI enables MCP support, we’ll update this section with setup instructions.
Claude Code (CLI)
Run this one-liner to add Sync to Claude Code:
Or add to .mcp.json in your project root:
Cursor
Add to .cursor/mcp.json in your project:
Other MCP Clients
Any MCP-compatible client can use the Sync MCP server. The configuration is the same — point it at npx -y @sync.so/mcp-server with your API key set as SYNC_API_KEY in the environment.
See the MCP protocol docs for client-specific setup instructions.
Interactive Login (No API Key)
If you prefer not to set an API key in your config, omit SYNC_API_KEY and the Sync MCP server will start a device auth flow on first run:
You’ll be prompted to visit a URL and enter a code. After approval, the token is cached at ~/.config/sync/mcp-credentials.json.
What Can I Do with the Sync MCP Server?
Once connected, you can create lipsync videos, check generation status, estimate costs, and manage assets — all through natural language. Here are example prompts you can try with your AI assistant:
- “Create a lipsync video with this video URL and audio URL”
- “Check the status of generation gen-abc123”
- “List available Sync models”
- “Show me my recent generations”
- “How much would it cost to generate a 30-second video?”
- “Get the details of my latest completed generation and give me the output URL”
- “Estimate the cost for a 45-second lipsync video, then create it if it’s under $1”
The Sync MCP server exposes all public Sync API endpoints as tools. Core tools include:
The Sync MCP server works with any model available through the API. Asset uploads are not yet available via the API — use publicly accessible URLs for video and audio inputs.
Sync MCP Server vs SDK vs REST API
The Sync MCP server is one of three ways to integrate with the Sync API. Choose the approach that best fits your workflow:
The Sync MCP server is ideal when you want to explore the API, prototype workflows, or create lipsync videos without writing code. For production applications, the Sync SDKs or REST API give you full programmatic control.
CLI Options
The Sync MCP server accepts the following options when run directly:
Programmatic Usage
You can also use the Sync MCP server as a library in your own applications. This is useful when you want to embed Sync’s MCP tools into a custom AI agent or multi-tool pipeline:
The Sync MCP server exposes the same auto-generated tools when used programmatically, so your custom agents get access to every public Sync API endpoint.
Troubleshooting
Sync MCP server not showing tools
- Make sure you have Node.js 18+ installed
- Verify your API key is valid at sync.so/settings/api-keys
- Restart your AI client after updating the configuration
- Check the terminal/logs for error messages
Authentication errors with the Sync MCP server
- Double-check your API key is correct and has not been revoked
- If using interactive login, try deleting
~/.config/sync/mcp-credentials.jsonand re-authenticating - Ensure your Sync account is active with a valid payment method
npx not found or 'command not found' errors
If you see sh: mcp-server: command not found or similar errors when using the npx configuration, this is typically caused by Node version managers (nvm, fnm, volta) not resolving npx bin paths correctly.
Fix: Install the package globally and reference it directly:
Then update your MCP config to use sync-mcp instead of npx:
If that still doesn’t work, use the full path to node:
Frequently Asked Questions
Do I need to install anything besides Node.js?
No. The Sync MCP server runs via npx, which downloads the package automatically. Node.js 18+ is the only prerequisite. You can also install it globally with npm install -g @sync.so/mcp-server if you prefer.
Does the Sync MCP server auto-update when new API endpoints ship?
Yes. The Sync MCP server fetches the latest OpenAPI spec from the Sync API on every startup. When new endpoints are added to the Sync API, they become available as MCP tools automatically — just restart the server.
Can I use the Sync MCP server without an API key?
Yes. If you omit the SYNC_API_KEY environment variable, the Sync MCP server starts an interactive device auth flow. You’ll be prompted to visit a URL and enter a code to authenticate with your Sync account.
Which AI clients support the Sync MCP server?
The Sync MCP server supports 8 AI clients: Claude Desktop, ChatGPT Desktop, Claude Code, Cursor, Windsurf, Codex CLI, Claude Web (coming soon), and any MCP-compatible client. See the supported clients table for details.
Are asset uploads supported through the Sync MCP server?
Asset uploads are not yet available through the Sync API, so they are not available through the Sync MCP server either. Use publicly accessible URLs for your video and audio inputs. Once uploads are added to the Sync API, they will automatically become available through the Sync MCP server.
Related Resources
- Quickstart — get started with the Sync API
- Authentication — learn about API key setup
- SDKs — use official Python or TypeScript SDKs
- GitHub: @sync.so/mcp-server — source code and issues

