Turning a Claude Code YouTube tutorial into a working setup script
An 11-minute Claude Code setup walkthrough. Your AI watches it once, hands you back a single shell script that reproduces every step — including the bits the creator skipped over.
WHAT YOU ASKED YOUR AI
“Watch this Claude Code tutorial and write me a single setup.sh that does everything they did, including the env vars and the MCP config.”
SCENES VIDEO VISION MCP EXTRACTED
Terminal: npm install -g @anthropic-ai/claude-code
Editor: ~/.claude/config.json with mcpServers block
Terminal: setting ANTHROPIC_API_KEY env var
Adding video-vision-mcp to mcpServers list
Restart, verify with /mcp list inside Claude Code
Live demo: pasting a YouTube URL, AI watches it
TRANSCRIPT SNIPPET
Alright, so first we're gonna install Claude Code globally. npm install -g @anthropic-ai/claude-code. Then you'll want to set your API key — export ANTHROPIC_API_KEY equals your key. Now the fun part: MCP servers. Open the config at tilde slash dot claude...
WHAT YOUR AI HANDED BACK
#!/usr/bin/env bash
set -e
# 1. Install Claude Code globally
npm install -g @anthropic-ai/claude-code
# 2. Persist API key (zsh — adjust shell as needed)
echo 'export ANTHROPIC_API_KEY="YOUR_KEY_HERE"' >> ~/.zshrc
# 3. Write Claude Code config with MCP server entry
mkdir -p ~/.claude
cat > ~/.claude/config.json <<'JSON'
{
"mcpServers": {
"video-vision": {
"command": "npx",
"args": ["-y", "@oamaestro/video-vision-mcp"]
}
}
}
JSON
echo '✅ Reload your shell, then run \"claude\" and try: /mcp list'
Want this for your own videos?
Free, MIT, no API keys. Works in Claude Code, Cursor, Cline, Windsurf.
Install Video Vision MCP →