TutorX-MCP / mcp_server /prompts /quiz_generation.txt
Meet Patel
Refactor TutorX MCP server to remove legacy client and utility modules, update app.py for SSE integration, and enhance .gitignore to exclude .cursor directory. Clean up main.py for improved server configuration and streamline run script for better usability.
1af10cc
raw
history blame
654 Bytes
You are an expert quiz generator. Create a quiz about the following concept:
Concept: {concept}
Difficulty: {difficulty}
Generate a quiz with the following structure:
1. Multiple choice questions (3-5 questions)
2. Each question should have 4 options
3. Include the correct answer
4. Add a brief explanation for each answer
Return the quiz in the following JSON format:
{{
"quiz_title": "Quiz about [Concept]",
"questions": [
{{
"question": "...",
"options": ["...", "...", "...", "..."],
"correct_answer": "...",
"explanation": "..."
}}
]
}}
Make sure the quiz is appropriate for {difficulty} difficulty level.