podcast-guest-crm

Built by Rudrendu Paul & Sourav Nandy · Engineered with Claude Code
Quick Start · The Problem · The Product · AI Layer · Architecture · Tech Stack
Quick Start
git clone https://github.com/RudrenduPaul/podcast-guest-crm
cd podcast-guest-crm
pnpm install
pnpm devThe app runs on seed data from first boot; 34 realistic guests across all six pipeline stages. No environment variables required.
web: http://localhost:3000
api: http://localhost:3001
docs: http://localhost:3001/docs ← Swagger UI, auto-generated from route schemasZero-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 inpackages/config crashes the server at boot if a required secret is missing, by design.
Related MCP server: content-distribution-mcp
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
Discover → Outreach → Scheduled → Recorded → Published → Follow-upEvery 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. |
Interview Brief | One-click pre-recording brief: bio intro, 5 tailored question types, talking points, closing hook. Copy-ready. |
Social Posts | LinkedIn post, Twitter/X thread (5 tweets with character counts), Instagram caption. Platform tabs, one-click copy per platform. |
Notification Center | Persistent bell dropdown. Shows guests without reply in 7+ days and upcoming recordings. Always visible. Always actionable. |
Today's Focus | Dashboard section that surfaces exactly what needs attention today. No manual triage required. |
Guest Detail | Animated fit score ring (counts from 0), lifecycle progress timeline, full contact links, AI action sidebar with three generative panels. |
Analytics | Bar chart by stage, donut by topic, 12-week outreach activity timeline, conversion metrics. Runs without backend dependency. |
Add Guest Modal | Cmd+N from anywhere. Name, email, title, company, bio, topics, LinkedIn, Twitter, stage, priority. Fit score auto-generated on create. |
Smart Nudges | Toast appears on dashboard load when guests have been in outreach > 7 days without reply. Proactive, named, not nagging. |
Keyboard Shortcuts
The app is designed for keyboard-first workflows. Power users never touch the mouse for core tasks.
Shortcut | Action |
| Command palette. Search guests, navigate, trigger actions |
| Add Guest modal directly |
| Navigate palette results |
| Select |
| Close any modal |
AI Layer
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.
// packages/ai/src/client.ts. The single seam for all AI calls
export class ClaudeClient {
async completeJSON<T>(system: string, user: string): Promise<T>
async stream(system: string, user: string): AsyncIterable<string>
}
// Feature code never touches the SDK. It calls typed prompt functions:
const brief = await generateInterviewBrief(guest); // → InterviewBrief
const email = await draftOutreachEmail(guest, show); // → OutreachEmail
const score = await scoreGuestFit(guest, workspace); // → FitScorePrompt Modules
Feature | File | Output |
Outreach Email |
| Subject, 150–250 word body, confidence score (0–100), reasoning |
Guest Fit Score |
| Score, alignment rationale, red flags, booking difficulty |
Interview Brief |
| Bio intro, 5 question types, talking points, closing hook |
Topic Tagging |
| 3–8 tags from bio + LinkedIn, primary category, confidence |
Follow-Up Sequence |
| 3-email arc: Day 7 bump, Day 14 follow-up, Day 21 final |
Social Posts |
| 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:
export const OUTREACH_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
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-6Five 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 |
|
|
DB Agent |
|
|
AI Features Agent |
|
|
Test Agent |
| 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
Skeletoncomponents, not blank screensErrors 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.
Plan | Price | Who it's for |
Solo | $29/month | Independent podcast hosts managing 1 show, 20–100 guests/year |
Agency | $99/month | 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 |
|
Supabase MCP | Ready to wire |
|
Gmail MCP | Ready to wire |
|
Google Calendar MCP | Ready to wire |
|
Exa Search MCP | Ready to wire |
|
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. |
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. |
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. |
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. |
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. |
Project Structure
podcast-guest-crm/
├── apps/
│ ├── web/ # Next.js 14 App Router
│ │ ├── app/
│ │ │ ├── (auth)/login/ # Demo login (route group)
│ │ │ └── dashboard/ # Protected routes. No route group by design
│ │ │ ├── page.tsx # Overview · Today's Focus · Recent Activity
│ │ │ ├── layout.tsx # Sidebar + Navbar + GlobalModals
│ │ │ ├── guests/ # Table · filters · Add Guest modal
│ │ │ ├── pipeline/ # Kanban board
│ │ │ │ └── [id]/ # Guest detail · AI action sidebar
│ │ │ ├── outreach/ # AI email composer (streaming)
│ │ │ ├── analytics/ # Charts · conversion metrics
│ │ │ └── settings/ # Workspace · AI model config
│ │ ├── components/
│ │ │ ├── ui/ # shadcn/ui primitives
│ │ │ ├── shared/ # Sidebar · Navbar · CommandPalette
│ │ │ │ # NotificationDropdown · GlobalModals · EmptyState
│ │ │ ├── guests/ # GuestCard · GuestTable · AddGuestModal
│ │ │ │ # InterviewBriefPanel · SocialPostsPanel
│ │ │ ├── pipeline/ # KanbanBoard · KanbanColumn
│ │ │ └── outreach/ # AIAssistPanel (streaming typewriter)
│ │ ├── hooks/ # TanStack Query hooks. Graceful fallback on every query
│ │ ├── lib/ # api.ts · mock-data.ts · utils.ts
│ │ └── stores/ # Zustand. Sidebar · modals · palette · filters
│ │
│ └── api/ # Fastify v5 backend
│ └── src/
│ ├── plugins/ # cors · rate-limit · jwt · swagger-ui
│ ├── routes/ # /guests · /outreach · /ai · /analytics
│ ├── services/ # guestService. In-memory store, seeded on startup
│ └── tests/ # Vitest. Coverage gate >70%
│
├── packages/
│ ├── types/ # Shared TypeScript interfaces. Single source of truth
│ ├── config/ # Zod env validation · shared constants
│ ├── db/ # Drizzle schema · 34 seed guests · migrations
│ ├── ai/ # ClaudeClient · 6 typed prompt modules
│ ├── cli/ # podcast-guest-crm-cli: TypeScript CLI, wraps apps/api
│ └── cli-pypi-wrapper/ # Thin pip/pipx wrapper, shells out to the npm CLI
│
├── .claude/
│ ├── commands/ # /new-feature · /review-pr
│ └── agents/ # ui · db · ai-features · test. Scoped sub-agents
│
├── .github/
│ ├── workflows/ # ci.yml · security.yml (CodeQL)
│ └── PULL_REQUEST_TEMPLATE.md # Includes MLP checklist
│
└── docs/
├── architecture/ # system-design.md · security.md · ai-layer.md
└── decisions/ # ADR 001 (monorepo) · 002 (Drizzle) · 003 (Fastify)API Reference
OpenAPI documentation auto-generated at http://localhost:3001/docs.
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 timelinePATCH /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:
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.
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-clipodcast-guest-crm-cli login
podcast-guest-crm-cli guest list --stage published --limit 5
podcast-guest-crm-cli guest show <id>
podcast-guest-crm-cli guest add --name "Ada Lovelace" --email ada@example.com --title "Engineer" --company "Analytical Engines"
podcast-guest-crm-cli guest stage <id> outreach --reason "replied positively"
podcast-guest-crm-cli outreach draft <guest-id> --episode-angle "AI safety"
podcast-guest-crm-cli analytics summary
podcast-guest-crm-cli analytics pipelineAdd --json to any data-returning command for machine-readable output, meant for scripts and agents:
podcast-guest-crm-cli guest list --stage discover --jsonlogin 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.


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.
npm install -g podcast-guest-crm-cli
podcast-guest-crm-cli login{
"mcpServers": {
"podcast-guest-crm": {
"command": "npx",
"args": ["podcast-guest-crm-cli", "mcp"]
}
}
}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 |
Workspace isolation | All queries filter by |
Rate limiting | 100 req/min per IP via |
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 |
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 |
|
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
Star it if you find it useful.
Built with Claude Code
FAQ
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?
Not without written approval. This repository (including packages/cli and packages/cli-pypi-wrapper) is proprietary, jointly owned by Rudrendu Paul and Sourav Nandy. See LICENSE for the exact permitted and restricted uses; commercial use, derivative products, and white-labeling all require prior written approval from both owners.
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
Proprietary. See LICENSE for full terms.
Viewing and forking for personal or educational use is permitted. Commercial use, derivative products, or business deployment requires written approval from both owners.
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceAI-native productivity backend that gives your AI assistant persistent memory, pattern awareness, and computed intelligence about your work. 14 MCP tools for task management, daily planning, weekly review, and personal context.MIT
- AlicenseAqualityDmaintenanceMulti-platform content distribution — draft posts, repurpose content, generate carousels, schedule, analyze performance, create threads. 7 MCP tools.711MIT
- AlicenseAqualityDmaintenanceAI client acquisition autopilot. 15 MCP tools for LinkedIn, Email, X, Instagram & Blog outreach from Claude.147MIT
- Flicense-qualityDmaintenanceCentralizes 10 marketing APIs into 14 MCP tools for AI assistants to pull data, audit sites, research trends, and manage Google Drive without switching tabs.
Related MCP Connectors
Cloud MCP for project data, analytics, research, content planning, media generation, and growth.
Israeli podcast & content marketplace MCP — 7 tools: studios, podcasts, glossary, industry report.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RudrenduPaul/podcast-guest-crm'
If you have feedback or need assistance with the MCP directory API, please join our Discord server