Clip podcasts from Claude Code
Podcli ships as a Model Context Protocol server with 22 tools that cover transcription, AI clip scoring, face-tracked 9:16 cropping, burned-in captions, and export. Plug it into Claude Code, Codex, Cursor, or any MCP client. Say “clip this episode” and the agent runs the whole pipeline.
You talk to the agent. The agent calls Podcli.
MCP is the spec that lets an AI agent discover and call tools on your machine. Podcli runs as one of those servers.
The 22 tools, grouped by stage
Every step of the podcast-to-shorts pipeline is exposed as a tool. The agent picks the right ones automatically.
Ingest
Score
Render
Ops
Integrate
Add Podcli to Claude Code
The MCP config is one block. Same shape for Claude Code, Claude Desktop, and Codex.
// claude_desktop_config.json (same shape for Codex) { "mcpServers": { "podcli": { "command": "podcli", "args": ["mcp"] } } }
What you actually say to the agent
Natural language. The agent reads the tool list and figures out the call sequence.
Why not just use a generic FFmpeg MCP
Same prompt, two tool surfaces. The agent does less work when the tools speak podcast, not pixels.
Frequently asked
The questions people search before they wire Podcli into their MCP client.
What is the Podcli MCP server?+
A Model Context Protocol server that exposes 22 tools covering the podcast-to-clip pipeline: transcription, AI clip scoring against a knowledge base, face-tracked 9:16 cropping, burned-in captions via Remotion, hardware-accelerated export.
How do I add Podcli to Claude Code?+
Install Podcli (curl -fsSL https://podcli.com/install.sh | sh), then run 'podcli mcp install' for Claude Code, or add a 'podcli' entry running 'podcli mcp' for Claude Desktop.
Does the MCP server upload my podcast files anywhere?+
No. It runs locally as a process the agent talks to. Video, transcript, and renders all stay on your machine. The only optional network calls are to the Claude or Codex API for AI clip scoring.
Is this different from a CLI?+
Yes. The CLI is a fixed command. The MCP server exposes discrete tools the agent composes on demand. Both ship in the same install and you can use either.
What models work with Podcli's MCP server?+
Any MCP-compatible client. Tested with Claude Code, Claude Desktop, and Codex. Any agent that speaks MCP can read the tool list and call it.
Wire Podcli into Claude Code
Clone the repo, run the setup script, then point your MCP client at the built server. Takes about as long as making coffee.