get_student_analytics
Analyze student activity, participation, and progress in Canvas courses to track assignment completion, access patterns, and engagement metrics.
Instructions
Get detailed analytics about student activity, participation, and progress in a course.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
current_only: Whether to include only assignments due on or before today
include_participation: Whether to include participation data (discussions, submissions)
include_assignment_stats: Whether to include assignment completion statistics
include_access_stats: Whether to include course access statistics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
current_only | No | ||
include_access_stats | No | ||
include_assignment_stats | No | ||
include_participation | No |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"title": "Course Identifier",
"type": "string"
},
"current_only": {
"default": true,
"title": "Current Only",
"type": "boolean"
},
"include_access_stats": {
"default": true,
"title": "Include Access Stats",
"type": "boolean"
},
"include_assignment_stats": {
"default": true,
"title": "Include Assignment Stats",
"type": "boolean"
},
"include_participation": {
"default": true,
"title": "Include Participation",
"type": "boolean"
}
},
"required": [
"course_identifier"
],
"type": "object"
}