Clypt for developers
Turn a podcast URL into clips, trailer, and shareable links.
A single POST that runs the full Clypt pipeline. Built for AI agents and agentic content stacks, with an MCP server for Claude Desktop and Cursor users.
Email + password signup, no card required. Sandbox keys are free.
Submit a job.
curl -X POST https://useclypt.com/api/v1/jobs \
-H "Authorization: Bearer clk_test_YOUR_SANDBOX_KEY" \
-H "Content-Type: application/json" \
-d '{
"source": {
"type": "audio_url",
"url": "https://example.com/episode.mp3"
}
}'Get the response.
{
"id": "job_4f8d2a1c9e...",
"object": "job",
"status": "queued",
"source": { "type": "audio_url", "url": "https://example.com/episode.mp3" },
"created_at": "2026-05-19T12:00:00Z"
}Poll GET /v1/jobs/{id} until status flips to complete. Audio sources land in ~2-5 min; video with include_trailer takes ~10-12 min. Or register a webhook and skip polling entirely.
What you get back.
- →Clips. Vertical 9:16 and landscape 16:9 MP4s, captions baked in, speaker tracking applied to video sources.
- →Trailer. A 60-90s vertical highlights reel of the bangers from the episode (video sources, opt-in via
options.include_trailer). - →Show notes. Multi-section markdown summary generated from the full transcript.
- →Guest share URL. Unguessable public link the host can send the guest so they see + download every clip from their episode.
- →Transcript. Speaker-labelled, word-level timestamps from Deepgram.
Or skip REST and use the MCP server.
@useclypt/mcp-server is live on npm. Add it to your Claude Desktop or Cursor config and ask the assistant to clip a podcast in natural language.
{
"mcpServers": {
"clypt": {
"command": "npx",
"args": ["-y", "@useclypt/mcp-server"],
"env": { "CLYPT_API_KEY": "clk_test_..." }
}
}
}Pricing.
$3 per successful job for video_url, audio_url, and rss_feed_url. $7 per job for youtube_url (covers Apify ingestion). 3 free jobs/month across any source type. Failed jobs are never billed. Sandbox is unlimited and free.
Billing is rolling out shortly. Early-access keys are free during the beta window.