Manage podcast guest pipeline, outreach drafts, and analytics via 5 MCP tools.
io.github.RudrenduPaul/podcast-guest-crm โ MCP Server
This Model Context Protocol (MCP) server manages a podcast guest pipeline. It provides capabilities to handle outreach drafts and analytics through five MCP tools. The project is positioned around a CRM workflow for guest booking and tracking from initial outreach to results.
๐ ๏ธ Key Features
Podcast guest pipeline management
Outreach drafts handling
Analytics support
Exposes functionality via 5 MCP tools
๐ Use Cases
Manage podcast guest booking as a CRM workflow
Draft and iterate on outreach communications
Track outcomes using analytics related to the guest process
โก Developer Benefits
Works within an MCP tooling setup (5 tools)
CRM-style organization for guest and outreach data
โ ๏ธ Limitations
Description provided does not specify tool names, authentication, or data schemas
Zero-config only applies to this local dev mode running on seed data. A production deployment needs real Supabase and Anthropic credentials set in the environment: the Zod env schema in packages/config crashes the server at boot if a required secret is missing, by design.
The Problem
Every tool a podcast host reaches for was built for a different job. HubSpot is a sales CRM. PodMatch is a discovery marketplace. Notion is a blank canvas that requires engineering to become anything useful. None of them model the guest lifecycle (the arc from discovery through outreach, scheduling, recording, publishing, and follow-up) as a first-class object.
This tool does. Guest fit scoring, personalized outreach drafting, interview prep, and follow-up sequences run on claude-sonnet-4-6, which is what makes automating those specific steps viable now in a way that wasn't a couple of years ago.
The Product
A full-stack AI-native CRM with six pages, eleven features, and zero compromises on craft.
Core Workflow
code
Discover โ Outreach โ Scheduled โ Recorded โ Published โ Follow-up
Every guest moves through this lifecycle. Every transition is validated, logged, and acted on. The system knows where every guest is, when they last heard from you, and what needs to happen next. Without you having to remember.
Feature Surface
Feature
What it does
Cmd+K Palette
Search any guest by name, company, or topic. Navigate all six pages. Trigger actions. Entirely keyboard-driven. The fastest path to anything in the app.
Kanban Pipeline
Six-column drag-and-drop board. Optimistic updates. Lifecycle rules enforced at the service layer. You can't jump from Discover to Published. Confetti fires on every confirmed booking.
AI Email Composer
Select a guest, click Generate. Our AI streams a personalized 150โ250 word pitch, character by character. Typewriter effect, not a spinner. Confidence score included.
All AI lives in packages/ai. The only place in the codebase that imports @anthropic-ai/sdk. Every feature calls a typed function. It never touches the SDK directly.
Two modes: completeJSON<T>() for structured output with generic type inference, stream() for the real-time typewriter effect. The outreach composer uses both simultaneously. Streaming for the live preview, JSON for the copy-ready result with confidence score.
typescript
// packages/ai/src/client.ts. The single seam for all AI callsexportclassClaudeClient {
async completeJSON<T>(system: string, user: string): Promise<T>
asyncstream(system: string, user: string): AsyncIterable<string>
}
// Feature code never touches the SDK. It calls typed prompt functions:const brief = awaitgenerateInterviewBrief(guest); // โ InterviewBriefconst email = awaitdraftOutreachEmail(guest, show); // โ OutreachEmailconst score = awaitscoreGuestFit(guest, workspace); // โ FitScore
Prompt Modules
Feature
File
Output
Outreach Email
outreach-email.ts
Subject, 150โ250 word body, confidence score (0โ100), reasoning
Guest Fit Score
guest-research.ts
Score, alignment rationale, red flags, booking difficulty
Interview Brief
interview-brief.ts
Bio intro, 5 question types, talking points, closing hook
Topic Tagging
topic-tagging.ts
3โ8 tags from bio + LinkedIn, primary category, confidence
Follow-Up Sequence
follow-up-sequence.ts
3-email arc: Day 7 bump, Day 14 follow-up, Day 21 final
Social Posts
social-post.ts
LinkedIn post, Twitter thread, Instagram caption. Tone varies by platform
The Prompt Engineering Approach
We're not prompting generically. Here's the actual constraint set from the outreach module. Specificity is the moat:
typescript
exportconstOUTREACH_EMAIL_SYSTEM_PROMPT = `You are an expert podcast booking agent
working on behalf of a host with a specific audience and brand.
Your emails must:
1. Be authentic, specific, and not generic. Reference the guest's actual recent work
2. Clearly state the show's value proposition and the size and shape of the audience
3. Make the ask simple and low-friction. One clear question, not a pitch deck
4. Be concise: 150โ250 words for the body
5. Have a subject line under 70 characters that doesn't feel like a cold email
6. NEVER use: "passionate", "synergy", "journey", "touch base", "hop on a call"
7. End with a single clear call-to-action. Not multiple options`;
The fit scoring prompt evaluates guests against the show's actual topic taxonomy. Not generic relevance signals. The interview brief generates question types calibrated to the podcast format (depth, contrarian, forward-looking). This is prompt engineering as product design, not prompt engineering as a party trick.
Architecture
System Diagram
code
Browser (Next.js 14 App Router)
โโโ TanStack Query v5 : server state, optimistic updates, stale-while-revalidate
โ every query falls back to seed data on API error
โโโ Zustand : UI state (sidebar, modals, โK palette, filters)
โ persisted to localStorage via middleware
โโโ lib/api.ts : typed fetch wrapper; catches 503, returns seed data
โโโ components/ : shadcn/ui primitives + Framer Motion feature components
โ HTTP/REST + JWT (Bearer token)
โผ
Fastify v5 API (Node.js 20, TypeScript strict mode)
โโโ Plugins: CORS (allowlist), @fastify/rate-limit (100/min), @fastify/jwt, swagger-ui
โโโ Routes: /guests, /outreach, /ai, /analytics โ all require authentication
โโโ Middleware: Zod schemas on every route. Body, query params, path params
โโโ Services: guestService (in-memory store seeded from packages/db on startup)
โ โ
โผ โผ
packages/db packages/ai
Drizzle ORM schema + ClaudeClient +
34 seed guests 6 typed prompt modules
SQLite (dev) โ
Turso (prod) โผ
Anthropic API
claude-sonnet-4-6
Five Architectural Decisions Worth Reading
1. Shared types in packages/types, zero inline definitions in apps/.
Every interface that crosses the API boundary (Guest, OutreachEmail, Workspace, AnalyticsOverview) lives in one package, imported by both the API and the web app. A TypeScript error on the frontend is a broken API contract caught before it ships.
2. Single AI seam in packages/ai.ClaudeClient is the only place @anthropic-ai/sdk is imported. It handles exponential backoff on 429s and 5xx, token tracking per call, markdown stripping from JSON responses, and streaming via AsyncIterable. Feature code calls typed functions and never knows the SDK exists. Swapping models or providers is a one-file change.
3. Graceful degradation as a design requirement, not an afterthought.
Every TanStack Query hook catches API errors and returns seed data. Every mutation has a synthetic fallback. The app is fully interactive without a running backend. This is deliberate: demos should never fail because a server is down.
4. Optimistic updates with enforced rollback.
Stage transitions on the kanban board are instant in the UI. The server confirms asynchronously. If the server rejects a transition (the lifecycle rules are strict, you cannot move from discover to published directly), the previous state is restored and an error toast fires. Users never wait for drag-drop feedback; errors surface clearly without corrupting state.
5. Zod at every boundary.
The env schema crashes the server at boot if a required secret is missing. Silent misconfiguration is worse than a loud failure. Every API route has a Zod schema for body, query, and params; the CI pipeline rejects routes without schemas. Shared schemas live in packages/config so frontend and backend enforce the identical contract.
Sub-Agent Architecture (Claude Code)
This codebase was built using four specialized Claude Code sub-agents running in parallel, each scoped to a domain slice. This isn't a workflow preference. It's architectural isolation enforced at the tooling layer.
Agent
Constraint file
What it owns
UI Agent
.claude/agents/ui-agent.md
apps/web/ only. use client only when required. Framer Motion on all list animations.
DB Agent
.claude/agents/db-agent.md
packages/db/ only. Schema, seeds, migrations. Cannot touch routes or UI.
AI Features Agent
.claude/agents/ai-features-agent.md
packages/ai/ only. Prompts, streaming, JSON mode. No any, no hardcoded show context.
Test Agent
.claude/agents/test-agent.md
Tests for everything other agents build. Coverage gate: >70% before merge.
The UI agent cannot write a Drizzle query. The DB agent cannot create a React component. Constraint becomes architecture. You stop second-guessing whether a UI change silently mutated a schema.
Custom slash commands in .claude/commands/:
/new-feature <name>: scaffolds a full feature, API route + Zod schema + service + page + components + TanStack hook + tests
/review-pr: runs a security, type safety, and MLP checklist before merge
MLP: The Craft Standard
The "ship fast" advantage is gone. A capable developer scaffolds a CRM in a weekend; our solution compresses that to hours. The moat is now craft. The quality of what you build in that time.
We hold a Minimum Lovable Product bar on every PR. Elena Verna's framing: the threshold where a product earns genuine affection from its users, not just adequate utility.
Deliberately built moments:
Confetti on booking. When a guest moves to Scheduled, confetti fires. A confirmed booking is a real win. The app should treat it that way.
Typewriter effect on AI output. The generated email types out character by character. Streaming makes it feel like working with a collaborator, not waiting for a tool.
Fit score counts up. The ring animates from 0 to the actual score over 600ms. People watch it. That wait makes the score feel earned.
Command palette. โK puts every guest, page, and action one keypress away. Power users never reach for the mouse.
Today's Focus. The dashboard tells you exactly who needs attention today (stale outreach, upcoming recordings) without requiring you to remember what to check.
Named nudges. "Sara hasn't replied in 8 days" beats "3 follow-ups pending." Named, specific, actionable.
Personality copy in empty states. "Your discovery list is empty. Your next great episode is one outreach away" tells you what to do next. "No data found" doesn't.
MLP checklist, required on every PR:
Empty states have personality copy, not "No data found"
Loading states use Skeleton components, not blank screens
Errors have actionable messages, not "Something went wrong"
Key interactions have Framer Motion animations
What's the wow moment? If there isn't one, find it before merging.
Pricing
Two-tier SaaS. Simple pricing that grows with the customer.
Booking agencies managing 3+ shows and 200+ pitches/year
Usage-based AI credits above the base tier: the first 200 AI calls/month (outreach email, fit score, brief, social post) are included, above that teams pay for what they use.
Competitive Landscape
The gap isn't features. It's the mental model.
Google Sheets
HubSpot / Pipedrive
PodMatch
Podcast Guest CRM
Guest lifecycle (6-stage)
manual
custom fields required
โ
built-in, enforced
AI outreach (personalized)
โ
โ
โ
streaming, confidence score
Guest fit scoring
โ
โ
basic
AI-scored vs. your topics
Interview brief
โ
โ
โ
one click, copy-ready
Follow-up sequence (AI)
โ
add-on ($$$)
โ
3-email arc, AI-written
Social post generator
โ
โ
โ
LinkedIn + Twitter + Instagram
Command palette (โK)
โ
โ
โ
full keyboard navigation
Smart notification center
โ
โ
โ
nudges + recording alerts
Agency multi-show workspace
โ
$$$
โ
included
Price
$0
$45โ800/mo
$27โ97/mo
$29โ99/mo
PodMatch solves discovery: finding guests. We solve workflow: the months-long process of pitching, following up, scheduling, prepping, recording, publishing, and staying in relationship. These are not the same problem. The companies that built discovery tools left the workflow problem untouched. That's the gap.
MCP Integration Points
Every integration point sits behind an interface. MCP servers slot in without refactoring.
MCP Server
Status
Integration point
GitHub MCP
Active in dev
.github/: PR automation, CI status, issue tracking from the terminal
Supabase MCP
Ready to wire
packages/db/: queries live schema before writing queries, eliminating field-name bugs
Gmail MCP
Ready to wire
apps/api/src/routes/outreach.ts: outreach sending is behind a sendEmail() interface
Google Calendar MCP
Ready to wire
apps/api/src/routes/guests.ts: booking confirmation and recording date sync
Exa Search MCP
Ready to wire
packages/ai/src/prompts/guest-research.ts: live web data in the fit-scoring pipeline
With Gmail MCP active, outreach goes from drafted to sent in one click. With Calendar MCP, a guest moving to Scheduled creates the recording event automatically. With Exa, fit scoring pulls the guest's latest work from the web. Not just what's in their bio.
Tech Stack
Every choice is defended. No resume-driven development.
Layer
Technology
Why, honestly
Monorepo
Turborepo + pnpm workspaces
Remote build caching. workspace:* protocol. Single pnpm install at root wires everything.
Frontend
Next.js 14 App Router
RSC for static-first rendering. File-based routing. Built-in BFF pattern without a separate gateway.
UI
Tailwind CSS + shadcn/ui
shadcn copies into your repo. You own the code, not a version. No dependency hell on breaking releases.
Animations
Framer Motion
Layout animations on list reorders: one line. AnimatePresence handles mount/exit. Worth the bundle size.
Drag & Drop
@hello-pangea/dnd
Production-proven fork of react-beautiful-dnd. Maintained. Accessible. Drops in identically.
Server State
TanStack Query v5
Stale-while-revalidate. Optimistic updates. Auto background refetch. The kanban board is instant because of this.
UI State
Zustand
Minimal API. Sidebar, modals, command palette, filters. All persisted to localStorage in one line of middleware.
API
Fastify v5
~2x faster than Express at the p99. First-class TypeScript. @fastify/swagger generates OpenAPI from route schemas automatically.
Validation
Zod
One schema = one TypeScript type + one runtime validator. On every route. No exceptions.
ORM
Drizzle ORM
No code generation. Schema is plain TypeScript. Migrations are plain SQL. Queries are fully type-safe.
Database
SQLite (dev) / Turso (prod)
Zero config locally. Identical schema to production. Turso adds global edge distribution when we need it.
AI
claude-sonnet-4-6
Best structured JSON output and instruction-following depth available. The prompt patterns here require it.
Auth
Supabase Auth
JWT + Row Level Security. dev-mock-token in dev. RLS enforces workspace isolation at the DB layer in prod.
Email
Resend + React Email
Templates as React components. Version controlled, testable, previewable in a browser. Mocked in dev.
Charts
Recharts
React-native. Composable. TypeScript-friendly. Beat Chart.js on composability for our use case.
CI/CD
GitHub Actions
Lint โ typecheck โ test โ audit on every PR. CodeQL on weekly schedule. No merge without green.
OpenAPI documentation auto-generated at http://localhost:3001/docs.
code
GET /health Health check + readiness probe
GET /api/v1/guests List, paginated, filterable by stage/topic/priority
POST /api/v1/guests Create guest, triggers async fit scoring
GET /api/v1/guests/:id Guest detail
PUT /api/v1/guests/:id Update fields
PATCH /api/v1/guests/:id/stage Lifecycle transition, service validates allowed paths
DELETE /api/v1/guests/:id Soft delete
POST /api/v1/outreach/draft AI draft, JSON or streaming mode
POST /api/v1/outreach/send Send via Resend (mocked in dev)
GET /api/v1/outreach/:guestId Outreach history
POST /api/v1/ai/fit-score Score 0โ100 + rationale + red flags
POST /api/v1/ai/interview-brief Pre-recording brief with question structure
POST /api/v1/ai/social-post LinkedIn + Twitter thread + Instagram caption
GET /api/v1/analytics/overview Dashboard metrics + recent activity feed
GET /api/v1/analytics/pipeline Stage funnel + outreach activity timeline
WARNING
PATCH /guests/:id/stage, POST /guests, and GET /guests/:id currently declare their response shape as a bare { type: 'object' } with no listed properties in apps/api/src/routes/guests.ts. Fastify's JSON serializer strips the body down to {} on success as a result, even though the operation succeeded. guest list is unaffected. See the FAQ for how the CLI works around this.
Lifecycle transitions enforced at the service layer:
code
discover โ outreach โ scheduled โ recorded โ published โ follow_up
โ___________โ โ__________โ
(reschedule) (re-record needed)
CLI
podcast-guest-crm-cli is a real TypeScript CLI (packages/cli) that wraps the same API above. Every command maps to a real route, no invented endpoints.
bash
npm install -g podcast-guest-crm-cli
# or, for Python-first / pip environments (thin wrapper, shells out to the npm package via npx):
pip install podcast-guest-crm-cli
Add --json to any data-returning command for machine-readable output, meant for scripts and agents:
bash
podcast-guest-crm-cli guest list --stage discover --json
login authenticates directly against Supabase's own REST auth endpoint (POST <SUPABASE_URL>/auth/v1/token?grant_type=password), the same identity provider the web app uses. It never uses the dev-only Bearer dev-mock-token shortcut in apps/api/src/plugins/auth.ts, that bypass exists purely for local API testing. The resulting session is cached to ~/.config/podcast-guest-crm-cli/credentials.json (permissions 0600) and refreshed silently with the stored refresh token when it expires.
CLI guest list and analytics summary
Full podcast-guest-crm-cli --help reference, showing every real subcommand and its flags
MCP Server
podcast-guest-crm-cli ships a Model Context Protocol server (not to be confused with the third-party MCP servers this app can integrate with, listed above). podcast-guest-crm-cli mcp starts it over stdio, exposing five tools that call straight into the same API seam every CLI command uses: list_guests, add_guest, update_guest_stage, draft_outreach_email, and get_analytics_summary.
A real tools/call for the core lifecycle tool, {"name": "update_guest_stage", "arguments": {"id": "guest_1", "stage": "outreach"}}, returns the same envelope guest stage <id> outreach --json prints on the CLI. See packages/cli's README for the full tool reference.
Security
Production-grade controls from day one. We don't retrofit security.
Control
Implementation
Authentication
JWT via @fastify/jwt. Every route: preHandler: [server.authenticate]. No exceptions, including in dev.
Workspace isolation
All queries filter by workspaceId from JWT payload. Supabase RLS enforces this at DB layer in production.
Rate limiting
100 req/min per IP via @fastify/rate-limit. Configurable per environment.
Input validation
Zod on every route. Body, query, path params. No schema = no ship.
SQL injection
Drizzle ORM parameterized queries throughout. No raw SQL in this codebase.
XSS
Next.js default escaping + restrictive CSP headers in next.config.ts.
Secrets
Zod env schema crashes server at boot on missing required vars. Silent misconfiguration is a security bug.
CORS
Allowlist-based. No wildcard, ever.
SAST
CodeQL on every PR + weekly schedule.
Dependencies
pnpm audit in CI. Breaks the build on high-severity vulnerabilities.
Roadmap
Near-term (next 60 days):
MCP: Gmail + Google Calendar: outreach goes from drafted to sent in one click; booking confirmations create calendar events automatically
MCP: Exa Search: guest fit scoring pulls live web data, not just bio text
Stripe billing: Solo $29/mo, Agency $99/mo, usage-based AI credits above tier
Medium-term:
Transcript ingestion: upload episode, auto-generate social posts and follow-up email referencing specific highlights
Client portal: token-based read-only view for agency clients, eliminating the weekly status report email
Zapier / Make connector: two-way sync with Cal.com, Notion, HubSpot
RSS extraction: input a podcast RSS URL, auto-populate host contact info and show stats
Longer-term:
Mobile (React Native): same API, native feel, for pipeline review on the go
Multi-show dashboard: agency view across all managed shows in one screen
Predictive follow-up: ML model trained on reply rate data to optimize outreach timing
The Team
Rudrendu Paul and Sourav Nandy have built this production-ready AI-native software.
The stack used:
Full-stack TypeScript monorepos (Turborepo + pnpm) with shared type packages, enforced at the CI layer
Fastify APIs with Zod-validated schemas, JWT authentication, and Row Level Security. No exceptions
AI-powered feature layers with typed prompt modules, streaming, JSON extraction, and exponential backoff
Next.js 14 App Router frontends with TanStack Query, Zustand, Framer Motion, and shadcn/ui
Claude Code sub-agent architectures that enforce domain boundaries at the tooling layer
What is podcast-guest-crm-cli and how is it different from using the web app?
It's a real TypeScript command-line client (packages/cli) for the same API the Next.js web app calls. It wraps the guest lifecycle endpoints (guest list/add/show/stage), the AI outreach drafting endpoint (outreach draft), and the analytics endpoints (analytics summary/pipeline). The differentiator is agent-native output: every data-returning command supports --json, so a script or an AI agent can drive the same pipeline a human would drive from the dashboard, without scraping HTML or maintaining its own HTTP client.
What platforms and runtimes does it support?
The npm package (podcast-guest-crm-cli on npm, requires Node.js 20 or newer) runs on macOS, Linux, and Windows anywhere Node runs. A separate PyPI package of the same name (packages/cli-pypi-wrapper) is a thin wrapper for pip/pipx users: it doesn't reimplement the CLI in Python, it checks that node and npx are on PATH and shells out to the npm package, pinned to the wrapper's own version -- falling back to npm's latest release if that exact version was never published to npm, rather than failing outright.
How does login work?
podcast-guest-crm-cli login prompts for your email and password, then authenticates directly against your Supabase project's own REST endpoint (POST <SUPABASE_URL>/auth/v1/token?grant_type=password), the same identity provider the web app uses. You'll need your deployment's Supabase project URL and anon key (--supabase-url / --supabase-anon-key, or PODCAST_GUEST_CRM_SUPABASE_URL / PODCAST_GUEST_CRM_SUPABASE_ANON_KEY), matching the values your deployment already sets as NEXT_PUBLIC_SUPABASE_URL / NEXT_PUBLIC_SUPABASE_ANON_KEY. The resulting access and refresh tokens are cached to ~/.config/podcast-guest-crm-cli/credentials.json with 0600 permissions, and the access token refreshes silently once it expires.
Why did a command print {"data": {}} instead of the fields I expected?
That's a real, current gap in a few of the API's own Fastify response schemas (apps/api/src/routes/guests.ts), not a CLI bug: routes like PATCH /guests/:id/stage, POST /guests, and GET /guests/:id declare their response shape as a bare { type: 'object' } with no listed properties, so Fastify's JSON serializer strips the body down to an empty object even on success. The CLI detects this and falls back to printing the raw (empty) response instead of crashing on a missing field. guest list isn't affected, since its schema declares an array with no fixed item shape.
Can I use this CLI in an automated pipeline or hand it to an AI agent?
Yes, that's the primary design goal. Every data-returning command accepts --json for structured output, exit codes are nonzero on failure, and error responses are JSON objects with error, message, and statusCode fields when --json is set. There's no interactive-only path required for any command except login's password prompt, which also accepts --email and --password flags for non-interactive use. For MCP-native agents (Claude Desktop, Claude Code), podcast-guest-crm-cli mcp starts a stdio MCP server exposing the same guest-lifecycle, outreach-drafting, and analytics capability as callable tools, see MCP Server above.
Can I use this CLI, or the rest of this codebase, commercially?
Yes. This repository (including packages/cli and packages/cli-pypi-wrapper) is MIT licensed, jointly owned by Rudrendu Paul and Sourav Nandy. See LICENSE for the full terms; commercial use, modification, and redistribution are all permitted.
Does the CLI ever store or transmit my password?
No. The password you enter at the login prompt is sent once, over HTTPS, directly to Supabase's password grant endpoint, and is never written to disk. Only the resulting access token, refresh token, and their expiry are cached locally.
What happens if my session expires while I'm running a command?
The CLI checks the cached access token's expiry (with a 30-second buffer) before every request. If it's expired, the CLI calls Supabase's refresh-token grant with the stored refresh token, saves the new session, and retries, all without prompting you to log in again. You'll only see login errors again once the refresh token itself is invalidated (for example, after a password change).
License
MIT. See LICENSE for full terms. Commercial use, modification, and redistribution are all permitted.