Show HN: 퀴즈 MCP – Claude 코드 대화를 퀴즈로 전환
hackernews
|
|
💼 비즈니스
#ai 딜
#anthropic
#claude
#mcp
#개발도구
#퀴즈
#학습
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
개발자는 Claude Code 세션을 기반으로 자동 퀴즈를 생성하여 장기 기억을 돕는 MCP 서버를 출시했습니다. 이 도구는 TypeScript와 SQLite 등을 활용해 사용자가 질문하면 객관식 및 코딩 문제를 만들고, 답변 후 AI 튜터와 피드백을 주고받을 수 있는 '간격 반복' 기능을 제공합니다. 또한 터미널 스타일의 UI와 키보드 중심 조작을 지원해 긴 AI 대화 후에도 핵심 내용을 효율적으로 복습할 수 있도록 설계되었습니다.
본문
Turn your Claude conversations into learning opportunities. When you're exploring a new concept, debugging code, or learning a framework through Claude or Claude Code, how much are you actually retaining? Quizz MCP helps you engage deeper with your AI interactions by generating quizzes that test your understanding - giving you new perspectives and revealing gaps you didn't know you had. Reading explanations feels like understanding. But real comprehension comes from actively recalling and applying concepts. Quizz creates that active engagement: - Test yourself on code you just reviewed - Discover blind spots in your understanding - Get AI feedback on your reasoning, not just right/wrong - Track progress across topics over time git clone https://github.com/ThoBustos/quizz-mcp.git cd quizz-mcp pnpm install && pnpm build Requires: Node.js 20.11+, pnpm 8+ Add to your MCP settings (~/.claude/settings.json or project .mcp.json ): { "mcpServers": { "quizz": { "command": "node", "args": ["/absolute/path/to/quizz-mcp/packages/mcp/dist/index.js"], "env": { "ANTHROPIC_API_KEY": "sk-ant-..." } } } } cd quizz-mcp pnpm dev Opens at http://localhost:9004 In Claude Code, just ask: Quiz me on what we just discussed Or be specific: Generate a quiz about React hooks - 5 questions, medium difficulty, mix of multiple choice and code writing Claude will ask you to confirm: - Content: What to quiz on - Difficulty: Easy, Medium, Hard, or Expert - Question count: 1-20 questions - Question types: Multiple-choice, multi-select, open-ended, or code-writing Then it opens the quiz in your browser. | Key | Action | |---|---| A-D | Jump to option | ↑/↓ | Navigate options | Space | Toggle selection (multi-select) | Enter | Submit answer | Cmd+Enter | Submit code answer | Cmd+Shift+E | Expand/collapse AI chat | After each answer, you can chat with Claude about the question. Ask for clarification, explore edge cases, or dive deeper into concepts. Click the expand button (or Cmd+Shift+E ) for a full-screen chat experience. The chat supports code blocks, markdown, LaTeX math, and more: | Level | Pass Threshold | What It Tests | |---|---|---| | Easy | 50% | Basic recall, main ideas | | Medium | 60% | Comprehension, patterns, "how" and "why" | | Hard | 75% | Analysis, connections, trade-offs | | Expert | 85% | Critical evaluation, edge cases, alternatives | When you complete a quiz, you'll see your score and a summary of all questions. Hit Try Again to reinforce your learning with spaced repetition. In Claude Code: Show my quiz stats Or use the quiz_stats tool to see: - Total quizzes taken - Average scores by difficulty - Recent session history Go to Settings (gear icon) to configure your theme: | Theme | Style | |---|---| | Hacker | Matrix green terminal aesthetic (default) | | Claude Community | Warm Claude orange tones | | Minimal | Clean blue GitHub-style | | Thomas | Green accents + amber buttons | Your preference is saved locally. Quiz won't generate? - Ensure ANTHROPIC_API_KEY is set in your MCP config - Check that the path to packages/mcp/dist/index.js is absolute Browser doesn't open? - Start the web UI manually: pnpm dev - Navigate to http://localhost:9004/quiz/{session-id} Database errors? - The database is stored at ~/.quizz/data.db - Both MCP server and web UI share this database Fun fact: SQLite is the most deployed database in the world - it's in your phone, browser, car, and now tracking your quiz scores. Your learning progress is literally stored in the same format as aircraft flight systems. No pressure. See DESIGN.md for architecture details, or explore: pnpm test # Run tests pnpm lint # Check code style pnpm typecheck # Type checking MIT
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유