mark-coach-mcp
Local MCP server that turns Mark Builds Brands' YouTube knowledge into an AI coaching assistant for ecommerce and Facebook Ads.
README
mark-coach-mcp
Local MCP server that turns Mark Builds Brands' YouTube knowledge into an AI coaching assistant for ecommerce and Facebook Ads.
Ask Claude to analyze your Ads Manager screenshots, debug campaigns, or get strategic advice — and it'll respond using Mark's actual frameworks, vocabulary, and mental models from his 100+ videos.
How it works
- Downloads transcripts from Mark's YouTube channel
- Indexes them locally into a vector database (ChromaDB)
- Exposes a
search_mark_knowledgetool via MCP - A Claude skill activates the persona and queries the knowledge base
All data stays on your machine. No API keys required.
Install (one line)
curl -fsSL https://raw.githubusercontent.com/BlueNacho/mark-coach-mcp/main/install.sh | bash
That's it. The installer will:
- Clone the repo to
~/mark-coach-mcp - Install
uv(Python package manager) if needed - Install
yt-dlpif needed - Install Python dependencies
- Download Mark's transcripts (~100 videos, a few minutes)
- Index everything into a local vector DB
- Auto-detect Claude Code and/or Claude Desktop on your machine and configure both
- Install the
mark-coachskill globally for Claude Code
After it finishes, restart Claude Desktop / Claude Code and start using /mark-coach.
Want it somewhere else?
INSTALL_DIR=~/projects/mark-coach-mcp curl -fsSL ... | bash
Manual install
git clone https://github.com/BlueNacho/mark-coach-mcp ~/mark-coach-mcp
cd ~/mark-coach-mcp
./setup.sh
Using it
Claude Code
The skill is installed globally. Just open Claude Code and type:
/mark-coach
Or describe an ecommerce / Facebook Ads question and the skill activates automatically.
Claude Desktop
After restart, the search_mark_knowledge tool is available. To get the persona/voice, create a Project in Claude.ai (or Cowork Space) and paste the contents of skills/mark-coach.md into the project's Custom Instructions.
Adding new videos
When Mark publishes new content:
cd ~/mark-coach-mcp
./setup.sh
The setup script is idempotent — it re-downloads only new videos and re-indexes only the new ones (existing indexed videos are skipped via data/processed.txt).
Using your own transcripts
If you have your own .vtt files (from any creator), drop them into transcripts/ and run:
./setup.sh
The indexer accepts any YouTube .vtt file — it strips timestamps, dedupes, and chunks the text.
Project structure
mark-coach-mcp/
install.sh ← one-line bootstrap (clones repo, runs setup.sh)
setup.sh ← installs deps, downloads/indexes, wires Claude
pyproject.toml ← Python dependencies (managed by uv)
src/
indexer.py ← converts .vtt transcripts → ChromaDB
server.py ← MCP server with search_mark_knowledge tool
skills/
mark-coach.md ← Claude skill / persona definition
transcripts/ ← your .vtt files (gitignored)
data/ ← ChromaDB vector store (gitignored)
Requirements
- macOS or Linux
git(preinstalled on macOS via Xcode CLT, on Linux via your package manager)- Claude Code and/or Claude Desktop
Everything else (uv, yt-dlp, Python deps) is installed automatically.
Troubleshooting
MCP says "Failed to connect" after a reboot
The MCP needs the absolute path to uv. The setup script handles this automatically; if you registered manually, make sure your claude mcp add command uses the full path (e.g. /Users/you/.local/bin/uv, not just uv).
Re-run setup
The setup script is safe to run any number of times. It detects what's already in place and skips it.
cd ~/mark-coach-mcp && ./setup.sh
Uninstall
claude mcp remove -s user mark-coach 2>/dev/null
rm -rf ~/.claude/skills/mark-coach
rm -rf ~/mark-coach-mcp
For Claude Desktop, edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or ~/.config/Claude/claude_desktop_config.json (Linux) and remove the mark-coach entry from mcpServers.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.