Hormozi Mentor Agent
БесплатноНе проверенAnswers queries based on Alex Hormozi's YouTube content using local RAG with SQLite and vector embeddings.
Описание
Answers queries based on Alex Hormozi's YouTube content using local RAG with SQLite and vector embeddings.
README
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-transcriptnpm - Claude
claude-sonnet-4-6for synthesis - MCP server registered with mcporter
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:init
Ingestion
# Full channel load (run once — ~30-60 min for 600+ videos)
npm run ingest
# Subsequent manual refresh (only fetches new videos)
npm run cron
Query (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/health
mcporter 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/mcp
Mac 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.plist
Notes
- 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).
Установка Hormozi Mentor Agent
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/mandyszczepanski/hormozi-mentorFAQ
Hormozi Mentor Agent MCP бесплатный?
Да, Hormozi Mentor Agent MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Hormozi Mentor Agent?
Нет, Hormozi Mentor Agent работает без API-ключей и переменных окружения.
Hormozi Mentor Agent — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Hormozi Mentor Agent в Claude Desktop, Claude Code или Cursor?
Открой Hormozi Mentor Agent на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare Hormozi Mentor Agent with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
