canvas_get_module
Retrieve details of a specific module within a Canvas course by providing the course ID and module ID, enabling precise module management via the Canvas MCP Server V2.0.
Instructions
Get details of a specific module
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
module_id | Yes | ID of the module |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"module_id": {
"description": "ID of the module",
"type": "number"
}
},
"required": [
"course_id",
"module_id"
],
"type": "object"
}