# api MCP server

Quiz.Video MCP: list, create, AI-generate, and render quiz and flashcard videos.

## Links
- Registry page: https://www.getdrio.com/mcp/video-quiz-api
- Website: https://www.quiz.video

## Install
- Endpoint: https://www.quiz.video/mcp/
- Auth: Not captured

## Setup notes
- Remote endpoint: https://www.quiz.video/mcp/

## Tools
- get_api_catalog (Get API catalog) - Return the Quiz.Video API catalog linkset for agent discovery. Endpoint: https://www.quiz.video/mcp/
- get_openapi_spec (Get OpenAPI specification) - Return the Quiz.Video OpenAPI 3.1 specification. Endpoint: https://www.quiz.video/mcp/
- get_llms_txt (Get LLM API summary) - Return a compact LLM-readable summary of the Quiz.Video API. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_quizzes (List quizzes) - List quizzes owned by the authenticated user with optional pagination (page, limit). Endpoint: https://www.quiz.video/mcp/
- quiz_video_get_quiz (Get a quiz) - Fetch a single quiz (including settings and metadata) by id. Endpoint: https://www.quiz.video/mcp/
- quiz_video_create_quiz (Create a quiz) - Create a quiz. Prefer sending themeDescription or themeCustomization so the saved quiz has a custom visual theme; if omitted, the server derives one from the title/description. Omit backgroundMusicId to use default shared background music, or set null for silent. Required: title. Optional: description, format, quizType, template, countdownSeconds, difficulty, musicVolume, and questions[]. Endpoint: https://www.quiz.video/mcp/
- quiz_video_generate_quiz (Generate a quiz with AI) - AI-generate and save a quiz from a topic. Prefer providing themeDescription or themeCustomization; when omitted, the server derives and saves a topic-based custom theme. Omit backgroundMusicId to use default shared background music, or set null for silent. The response `data` always includes a `watchUrl` (the public quiz-viewer page, instantly playable). When autoRender is true, `data.render` also contains the queued render session so the agent can poll quiz_video_get_render for the MP4. Endpoint: https://www.quiz.video/mcp/
- quiz_video_update_quiz (Update quiz settings) - Update a quiz. `updates` accepts any subset of quiz settings (title, description, format, template, timing, music, TTS, publish status, etc.). Endpoint: https://www.quiz.video/mcp/
- quiz_video_delete_quiz (Delete a quiz) - Permanently delete a quiz and all of its questions, answers, and hooks. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_quiz_questions (List quiz questions) - List questions (and their answers) for a quiz. Endpoint: https://www.quiz.video/mcp/
- quiz_video_add_quiz_questions (Add questions to a quiz) - Append one or more questions (with their answers and optional images) to an existing quiz. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_quiz_hooks (List quiz hooks) - List video hooks configured for a quiz. Endpoint: https://www.quiz.video/mcp/
- quiz_video_create_quiz_hook (Create a quiz hook) - Create a hook for a quiz. `hook` is a pass-through object whose fields follow the HookInput schema (see OpenAPI spec). Endpoint: https://www.quiz.video/mcp/
- quiz_video_update_quiz_hook (Update a quiz hook) - Update an existing hook on a quiz. Requires quizId and numeric hookId; `updates` is a partial HookInput. Endpoint: https://www.quiz.video/mcp/
- quiz_video_delete_quiz_hook (Delete a quiz hook) - Delete a single hook from a quiz. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_flashcard_decks (List flashcard decks) - List flashcard decks owned by the authenticated user with optional pagination. Endpoint: https://www.quiz.video/mcp/
- quiz_video_get_flashcard_deck (Get a flashcard deck) - Fetch a flashcard deck (including all cards) by id. Endpoint: https://www.quiz.video/mcp/
- quiz_video_create_flashcard_deck (Create a flashcard deck) - Create a flashcard deck. Required: title (3-120 chars) and cards[] (min 1). Optional: description (≤1200 chars), tags (≤50 each). Endpoint: https://www.quiz.video/mcp/
- quiz_video_delete_flashcard_deck (Delete a flashcard deck) - Permanently delete a flashcard deck and all of its cards. Endpoint: https://www.quiz.video/mcp/
- quiz_video_create_render (Start render) - Queue a new video render for an existing quiz. Returns the render sessionId; poll quiz_video_get_render until its status is "completed" (typically 1-5 minutes), then call quiz_video_download_render to obtain the signed MP4 URL. The quiz itself is viewable immediately at /quiz/{slug}/ regardless of render status. Endpoint: https://www.quiz.video/mcp/
- quiz_video_get_render (Get render status) - Fetch the status and progress of a render session. When status is "completed", the response also contains a signed `videoUrl` (and `filename`) so the agent can share the MP4 directly without a separate quiz_video_download_render call. In-progress polls return status + progress. Endpoint: https://www.quiz.video/mcp/
- quiz_video_download_render (Get render download URL) - Request a signed download URL for a completed render. Endpoint: https://www.quiz.video/mcp/
- quiz_video_get_account (Get account) - Get the authenticated user's account info, plan, and usage limits. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_music (List music library) - List available background music tracks. Endpoint: https://www.quiz.video/mcp/
- quiz_video_list_templates (List custom templates) - List the caller's saved custom templates (and optionally public ones). Templates are reusable scene-based designs that can be applied to many quizzes. Endpoint: https://www.quiz.video/mcp/
- quiz_video_get_template (Get a custom template) - Fetch a single custom template (including the full scenes/layers payload) by id. Endpoint: https://www.quiz.video/mcp/
- quiz_video_create_template (Create a custom template) - Save a new custom template authored in the drag-and-drop editor. Required: template (the CustomTemplate JSON). Optional: name, description, thumbnail, isDefault, isPublic. Endpoint: https://www.quiz.video/mcp/
- quiz_video_update_template (Update a custom template) - Update an existing template. Any subset of fields may be supplied; omitted fields stay unchanged. Endpoint: https://www.quiz.video/mcp/
- quiz_video_delete_template (Delete a custom template) - Permanently delete a custom template you own. Quizzes that have a snapshot of this template are unaffected — the snapshot remains in their themeCustomization. Endpoint: https://www.quiz.video/mcp/
- quiz_video_apply_template (Apply template to quizzes) - Apply a snapshot of a custom template to one or more quizzes you own. Sets each quiz's template field to "custom" and writes the snapshot into themeCustomization.customTemplate. Future edits to the source template do not auto-propagate. Endpoint: https://www.quiz.video/mcp/

## Resources
- https://www.quiz.video/.well-known/api-catalog - Quiz.Video API catalog Linkset catalog for Quiz.Video API discovery. MIME type: application/linkset+json
- https://www.quiz.video/.well-known/openapi.json - Quiz.Video OpenAPI specification OpenAPI 3.1 description for the public Quiz.Video API. MIME type: application/json
- https://www.quiz.video/llms.txt - Quiz.Video LLM API summary Plain-text API summary optimized for language-model clients. MIME type: text/plain
- ui://quiz-video/quiz-card/v2 - Quiz.Video quiz card Inline UI for browsing a generated quiz, triggering a render, and watching the rendered MP4 without leaving the chat. MIME type: text/html;profile=mcp-app

## Prompts
- quiz_video_api_integration - Quiz.Video API integration Prompt for planning an authenticated Quiz.Video API integration.

## Metadata
- Owner: video.quiz
- Version: 0.1.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Apr 29, 2026
- Source: https://registry.modelcontextprotocol.io
