Your brains, everywhere your AI works.
Connect YouChannelBrains to Claude, ChatGPT or Cursor. Your assistant can question your brains directly and gets answers grounded in the real videos — every claim cited to the exact second, never invented.
Included in every paid plan — Pro, Power and Agency. MCP asks count toward your monthly answers, same as in-app chat.
Why this changes your workflow
Today your knowledge lives in one tab. With MCP, the brain you built from 200 videos becomes a tool your AI assistant can call mid-task — while it writes your emails, your strategy doc, your code. No copy-paste, no hallucinated quotes.
ask_brain
Ask any of your brains a question. Returns the grounded answer plus citations — creator, video, exact second, YouTube link.
list_brains
Lets your assistant discover which brains you have, so it can pick the right expert for the question.
transcribe
Pull the full transcript of any recording already in your library, ready for your assistant to work with.
Set up in 30 seconds
Generate your API key
One click in your account page. The key is shown once — you own it, you can revoke it anytime.
Paste one line
Nothing to download, nothing to install: our server is hosted. One command, or one JSON snippet in your AI tool.
Restart your AI tool
The three YouChannelBrains tools appear automatically. That is the whole setup.
Ask from anywhere
"Ask my marketing brain what Alex Hormozi says about pricing" — your assistant calls the brain and gets cited answers.
Setup — nothing to install
Our MCP server is hosted: you paste a URL and your key. No file to download, no Node, no updates to chase — new tools appear on their own.
- Get your key — in your account, section “MCP”, click Generate API key. Copy it (it's shown only once).
- Connect it — one command in Claude Code:
claude mcp add --transport http youchannelbrains \ https://youchannelbrains.com/api/mcp \ --header "Authorization: Bearer ycb_live_YOUR_KEY_HERE"
Or, for Claude Desktop / Cursor / any tool with a JSON config (.mcp.json, claude_desktop_config.json):
{
"mcpServers": {
"youchannelbrains": {
"type": "http",
"url": "https://youchannelbrains.com/api/mcp",
"headers": {
"Authorization": "Bearer ycb_live_YOUR_KEY_HERE"
}
}
}
}- Restart the tool — the three YouChannelBrains tools appear automatically.
- Try it — ask your assistant: “List my brains, then ask the first one what the creator recommends for beginners.” You'll get a cited answer.
Security: your key is stored by us only as a hash — treat it like a password. Revoke or regenerate it anytime from your account.
Prefer to run it on your own machine? (advanced)
Download ycb-mcp-server.mjs (needs Node.js 18+), save it anywhere, and point your config at it:
{
"mcpServers": {
"youchannelbrains": {
"command": "node",
"args": ["ycb-mcp-server.mjs"],
"env": { "YCB_AGENT_KEY": "ycb_live_YOUR_KEY_HERE" }
}
}
}