INDIVIDUAL MCP TOOL
get_quiz_stats
Get a quiz's funnel stats: views, started, finished, completion rate, and outcome counts.
LIVE ENDPOINT
https://quizgen.dev/mcp
Connect to this endpoint to inspect the live schema for get_quiz_stats and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.quizgen]
url = "https://quizgen.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"quizgen": {
"type": "http",
"url": "https://quizgen.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: quizgen
Remote MCP URL: https://quizgen.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"quizgen": {
"url": "https://quizgen.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"quizgen": {
"type": "http",
"url": "https://quizgen.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "quizgen",
"transport": "streamable-http",
"url": "https://quizgen.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
create_quiz— Create a live, hosted quiz/form/survey and get its shareable URL.list_quizzes— List quizzes owned by the connected QuizGen account, newest first (default 50 per page; the result includes total and has_more).get_quiz— Get one quiz including its full definition.update_quiz— Replace a quiz's definition (full replacement, not a patch — send the complete new definition).set_quiz_status— Open ("live") or close ("closed") a quiz.delete_quiz— Delete a quiz.get_responses— List a quiz's responses (answers, outcome, score, timestamps), newest first (default 50 per page; the result includes total and has_more).get_response— Get a single response by id.