AI Briefing
KO

OpenShorts Releases MCP for Short-Form Video Conversion

·2026.08.29 08:47

Key point

Open-source video editing tool OpenShorts has released an MCP server integrated with Claude, revealing key know-how on URL handling and asynchronous task design.

Details

Open-source video editing tool OpenShorts has released an MCP (Model Context Protocol) server that integrates with Claude to automatically convert long-form videos into vertical short-form videos. The project was developed based on Claude Code and is designed so that the pipeline operates automatically when users simply input a URL.

The three major technical challenges encountered during development and their solutions are as follows:

  • URL Handling and Prompt Design: In the initial version, Claude failed to directly open the provided YouTube link and attempted to perform a web search instead. To resolve this, the server description explicitly stated that 'URLs are passed as-is and the model does not need to verify them first,' thereby prompting the model to invoke the tool immediately.
  • Asynchronous Task Processing: Video editing is a long-running task that is difficult to complete within an interactive session. Therefore, an asynchronous architecture was adopted where process_video immediately returns a job id, status is queried via get_job_status, and a webhook_url parameter is supported for integration with external systems.
  • Remote Server Authentication (OAuth): Remote MCP servers require RFC 9728 and 8414 metadata issuance, dynamic client registration, and PKCE support. OpenShorts simplified the authentication path by issuing standard API keys under client names, rather than creating a new authentication scheme.

This summary was generated automatically by AI. Check the original for the author's claims and context. Copyright belongs to the original author.

Our guide explains how the AI works. Report summary errors, attribution issues, or removal requests via Contact.