canvas_start_quiz_attempt
Initiate a new quiz attempt by specifying course and quiz IDs through the Canvas MCP Server for streamlined assessment management.
Instructions
Start a new quiz attempt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
quiz_id | Yes | ID of the quiz |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"quiz_id": {
"description": "ID of the quiz",
"type": "number"
}
},
"required": [
"course_id",
"quiz_id"
],
"type": "object"
}