canvas_list_account_users
Retrieve and filter users for a specified account in Canvas LMS by ID, search term, or sort criteria using the MCP server interaction tool.
Instructions
List users for an account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ID of the account | |
order | No | Sort direction | |
search_term | No | Search term to filter users | |
sort | No | Sort order |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "ID of the account",
"type": "number"
},
"order": {
"description": "Sort direction",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"search_term": {
"description": "Search term to filter users",
"type": "string"
},
"sort": {
"description": "Sort order",
"enum": [
"username",
"email",
"sis_id",
"last_login"
],
"type": "string"
}
},
"required": [
"account_id"
],
"type": "object"
}