← quizgen.dev

INDIVIDUAL MCP TOOL

send_quiz_by_email

Email the quiz to recipients — each gets a unique tracked link so responses tie back to them (see get_sends).

quizgen.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://quizgen.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for send_quiz_by_email and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests sending messages.

Parent server

quizgen.dev

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.