← quiz.video
INDIVIDUAL MCP TOOL
quiz_video_get_quiz
Fetch a single quiz (including settings and metadata) by id.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent endpoint
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.video-quiz-api]
url = "https://www.quiz.video/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"video-quiz-api": {
"type": "http",
"url": "https://www.quiz.video/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: video-quiz-api
Remote MCP URL: https://www.quiz.video/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": {
"video-quiz-api": {
"url": "https://www.quiz.video/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"video-quiz-api": {
"type": "http",
"url": "https://www.quiz.video/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "video-quiz-api",
"transport": "streamable-http",
"url": "https://www.quiz.video/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_api_catalog— Return the Quiz.get_openapi_spec— Return the Quiz.get_llms_txt— Return a compact LLM-readable summary of the Quiz.quiz_video_list_quizzes— List quizzes owned by the authenticated user with optional pagination (page, limit).quiz_video_create_quiz— Create a quiz.quiz_video_generate_quiz— AI-generate and save a quiz from a topic.quiz_video_update_quiz— Update a quiz.quiz_video_delete_quiz— Permanently delete a quiz and all of its questions, answers, and hooks.