Connect AI agents to Capsule Studio. Create projects, render videos, and chat with the Capsule coproducer over the Model Context Protocol.
Authenticated via OAuth 2.1 with PKCE through WorkOS AuthKit. Use the same Capsule account you sign into studio.capsule.video with.
Add this to your claude_desktop_config.json and restart Claude:
{
"mcpServers": {
"capsule": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.capsule.video/mcp"
]
}
}
}
Claude will open a browser window for sign-in the first time you use a Capsule tool.
Any MCP client that supports OAuth 2.1 can connect directly to https://mcp.capsule.video/mcp. Clients without OAuth support (older versions of Claude Desktop, Cursor, etc.) should bridge through mcp-remote as shown above.
| Name | Description |
|---|---|
| whoami | Returns the authenticated user's profile. |
| list-projects | Lists all projects the user has access to. |
| get-project | Gets a single project by ID. |
| create-project | Create a new empty Capsule project. Returns the project ID and Studio URL. |
| coproducer-chat | Send a message to the Capsule coproducer AI agent for a project. The agent guides you through video production: Context & Goal → Source Material → VO Script → Voiceover Recording → Screen Recordings → Handoff. |
| get-project-link | Get the Capsule Studio URL for a project. |
| inspect-template | Returns the available template input fields for a project's render template. |
| render-variant | Initiates a video render for a project template with the provided inputs. |
| get-render-status | Checks the status of a video render by export ID. |
Machine-readable descriptors:
/llms.txt — plain-text summary for LLMs/.well-known/mcp — MCP server manifest (JSON)/.well-known/oauth-protected-resource — OAuth resource metadata (RFC 9728)