Let an AI agent tutor you out loud in VS Code: scroll to code, highlight it, and narrate it. Exposes an MCP server.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"code-tutor-narrator": {
"command": "npx",
"args": [
"-y",
"SimonSchick/code-tutor-narrator"
]
}
}
}
Run in terminal:
claude mcp add code-tutor-narrator npx -y SimonSchick/code-tutor-narrator
Add to .cursor/mcp.json:
{
"mcpServers": {
"code-tutor-narrator": {
"command": "npx",
"args": [
"-y",
"SimonSchick/code-tutor-narrator"
]
}
}
}