Before you start
Make sure the Medux MCP connector is available in Claude and that your API credentials are configured.
Place both MP4 files in an accessible local project folder. Using clips with compatible dimensions and codecs usually produces the cleanest transition.
Step-by-step workflow
Describe the merge task in one prompt
Tell Claude which files to combine and explicitly ask it to use Medux through MCP. In the recorded workflow, the two files are sample-clip-3s.mp4 and sample-clip-7s.mp4.
Use Medux to merge two video clips:
sample-clip-3s.mp4 and sample-clip-7s.mp4.
Upload the files using the curl command.
Let Claude inspect the files and choose the Medux tools
Claude checks that both clips exist, loads the Medux connector, and prepares signed upload URLs. This removes the need to manually search for endpoints or assemble the merge request yourself.

Upload each clip to the generated URL
Medux returns temporary signed URLs for the source files. Run the generated curl commands in your local terminal when the hosted Claude environment cannot directly reach the storage endpoint.
# The signed URL is generated by Medux and expires.
curl -X PUT "SIGNED_UPLOAD_URL_FOR_CLIP_1" -H "Content-Type: video/mp4" --data-binary "@/path/to/sample-clip-3s.mp4"
curl -X PUT "SIGNED_UPLOAD_URL_FOR_CLIP_2" -H "Content-Type: video/mp4" --data-binary "@/path/to/sample-clip-7s.mp4"
Confirm the uploads and start the merge
After both uploads succeed, tell Claude they are complete. Claude then submits the two uploaded asset URLs to the Medux video merge tool and begins monitoring the task.
Both uploads completed successfully.
Please start the Medux video merge task and keep checking until the result is ready.
Open and review the merged output
When processing finishes, Medux returns the final video URL. Open the result, verify that the clips appear in the intended order, and check the transition point, audio continuity, duration, and playback quality.

Workflow at a glance
Why this workflow is useful
Claude handles the coordination while Medux handles the media processing. You keep the entire operation in one conversational workflow without building a custom upload interface, writing a dedicated API client, or switching between multiple dashboards.
Result: two source clips become one ready-to-use MP4 through a repeatable MCP workflow.
Explore related workflows
Continue with a nearby Medux workflow or compare how the same task works across Claude MCP and Codex MCP.