Hormozi Mentor Agent
Fetches video transcripts and metadata from the Hormozi YouTube channel using the YouTube Data API v3 for RAG-based querying.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Hormozi Mentor AgentHow do I handle pricing objections in sales calls?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hormozi Mentor Agent
Alex Hormozi RAG mentor agent. Katie calls hormozi_query() and gets answers grounded in Hormozi's actual YouTube content.
Stack
SQLite + sqlite-vec (local, always-on, no cloud DB needed)
Voyage AI
voyage-3-liteembeddings (1024 dimensions)YouTube Data API v3 +
youtube-transcriptnpmClaude
claude-sonnet-4-6for synthesisMCP server registered with mcporter
Related MCP server: Local Memory MCP Server
Prerequisites
sqlite-vec — install on Mac mini:
brew install sqlite-vecEnvironment variables — copy
.env.exampleto.envand fill in:YOUTUBE_API_KEY— Google Cloud Console → APIs → YouTube Data API v3 → Create KeyVOYAGE_API_KEY— sign up at voyageai.com (free tier, 5 minutes)ANTHROPIC_API_KEY— already in Mark's environment
Setup
npm install
npm run db:initIngestion
# Full channel load (run once — ~30-60 min for 600+ videos)
npm run ingest
# Subsequent manual refresh (only fetches new videos)
npm run cronQuery (CLI test)
npm run query "what would you do about cold calling pricing objections?"Run the MCP Server
# stdio mode (for mcporter)
node dist/index.js --stdio
# HTTP mode (with health endpoint + built-in weekly cron)
node dist/index.js
# http://localhost:3456/healthmcporter Registration
After building (npm run build), register with mcporter on the Mac mini:
mcporter add hormozi-mentor --command "node /path/to/hormozi-mentor/dist/index.js --stdio"Or if running as HTTP server:
mcporter add hormozi-mentor --url http://localhost:3456/mcpMac mini launchd Cron (Weekly Refresh)
Create /Library/LaunchDaemons/com.marksapp.hormozi-mentor-cron.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.marksapp.hormozi-mentor-cron</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/node</string>
<string>/Users/mandyassistant/Desktop/MarkProjects/hormozi-mentor/dist/cron-ingest.js</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Weekday</key>
<integer>0</integer>
<key>Hour</key>
<integer>2</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
<key>EnvironmentVariables</key>
<dict>
<key>YOUTUBE_API_KEY</key>
<string>YOUR_KEY_HERE</string>
<key>VOYAGE_API_KEY</key>
<string>YOUR_KEY_HERE</string>
<key>ANTHROPIC_API_KEY</key>
<string>YOUR_KEY_HERE</string>
<key>DB_PATH</key>
<string>/Users/mandyassistant/Desktop/MarkProjects/hormozi-mentor/hormozi.db</string>
</dict>
<key>StandardOutPath</key>
<string>/tmp/hormozi-mentor-cron.log</string>
<key>StandardErrorPath</key>
<string>/tmp/hormozi-mentor-cron.err</string>
</dict>
</plist>Load it:
sudo launchctl load /Library/LaunchDaemons/com.marksapp.hormozi-mentor-cron.plistNotes
The
books/directory is gitignored. Drop Hormozi PDFs there for book ingestion (Phase 2).The
hormozi.dbfile is gitignored. It lives on the Mac mini only.Weekly cron also runs automatically when the HTTP server is up (built into
src/index.tsvia node-cron).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/mandyszczepanski/hormozi-mentor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server