Discussion forum facilitator for Canvas LMS. Helps students and educators browse, read, reply to, and create discussion posts. Trigger phrases include "discussion posts", "reply to students", "check discussions", "forum participation", "post a discussion", or any discussion-related Canvas task.
Facilitate discussion forum activity in Canvas LMS -- browse topics, read posts, reply to students, create new discussions, and monitor participation. Works for both students and educators.
ENABLE_DATA_ANONYMIZATION=true in the Canvas MCP server environment to anonymize student names in output.Ask the user which course to work with. Accept a course code, Canvas ID, or ask them to pick from a list.
If the user does not specify, use list_courses to show active courses and prompt:
Which course should I look at discussions for?
Call the MCP tool list_discussion_topics with the course identifier to retrieve all discussion forums.
Parameters:
course_identifier -- course code or Canvas IDinclude_announcements -- set to false (default) to see only discussions, or true to include announcementsData to surface per topic:
Present the list so the user can pick a topic to drill into.
Once the user selects a topic, call list_discussion_entries to retrieve posts.
Parameters:
course_identifier -- course code or Canvas IDtopic_id -- the selected discussion topic IDinclude_full_content -- set to true to see complete post bodiesinclude_replies -- set to true to see threaded repliesData to surface per entry:
If a post is truncated or the user wants the complete text, call get_discussion_entry_details.
Parameters:
course_identifier -- course code or Canvas IDtopic_id -- the discussion topic IDentry_id -- the specific entry IDinclude_replies -- set to true to also fetch all replies to this entryPresent the full post content along with any replies, timestamps, and author information.
When the user wants to respond to a specific post, call reply_to_discussion_entry.
Parameters:
course_identifier -- course code or Canvas IDtopic_id -- the discussion topic IDentry_id -- the entry being replied tomessage -- the reply content (HTML is supported)Before sending, always:
When the user wants to add a new post to an existing discussion (not a reply), call post_discussion_entry.
Parameters:
course_identifier -- course code or Canvas IDtopic_id -- the discussion topic IDmessage -- the post content (HTML is supported)Show the draft to the user and confirm before posting.
When the user needs an entirely new discussion forum, call create_discussion_topic.
Parameters:
course_identifier -- course code or Canvas IDtitle -- the discussion titlemessage -- the opening post / prompt for the discussiondelayed_post_at -- (optional) ISO 8601 datetime to schedule the discussion to appear laterlock_at -- (optional) ISO 8601 datetime to automatically lock the discussionrequire_initial_post -- set to true if students must post before seeing classmates' responsespinned -- set to true to pin the topic to the top of the discussion listConfirm the title, content, and any scheduling options with the user before creating.
list_discussion_topics to get all discussion forums in the course.list_discussion_entries to retrieve all posts.list_users or list_submissions to get enrolled students).Present participation as a summary:
## Discussion Participation: [Course Name]
### Topic: "Week 5 Reading Response" (due Mar 3)
- **Posted:** 28 / 32 students (88%)
- **Not posted:** Student_a1b2c3d, Student_e4f5g6h, Student_i7j8k9l, Student_m0n1o2p
### Topic: "Case Study Analysis" (due Mar 5)
- **Posted:** 15 / 32 students (47%)
- **Not posted:** [17 students listed]
### Students Missing Multiple Discussions
- Student_a1b2c3d -- missing 2 discussions
- Student_e4f5g6h -- missing 2 discussions
After identifying non-participants, offer to:
create_announcement with a general reminder about discussion deadlines.send_conversation to contact students who are behind on participation.When an educator wants to reply to student posts:
get_discussion_entry_details (include replies for context).reply_to_discussion_entry.list_discussion_topics to see all active discussions.list_discussion_entries with include_full_content=true to read posts.get_discussion_entry_details.reply_to_discussion_entry.list_discussion_entries to avoid duplicating points already made.post_discussion_entry.| Tool | Purpose |
|---|---|
list_courses | Find the target course |
list_discussion_topics | Browse all discussion forums in a course |
list_discussion_entries | View posts within a discussion topic |
get_discussion_entry_details | Read a single post with full content and replies |
get_discussion_topic_details | Get metadata about a discussion topic |
reply_to_discussion_entry | Reply to an existing post |
post_discussion_entry | Add a new top-level post to a discussion |
create_discussion_topic | Create a new discussion forum |
create_announcement | Post a course announcement (educator) |
send_conversation | Message specific students through Canvas (educator) |
list_users | Get enrolled students for participation tracking (educator) |
reply_to_discussion_entry, post_discussion_entry, create_discussion_topic, create_announcement).require_initial_post). If a student cannot see other posts, they need to post first.delayed_post_at and lock_at dates on topics. Do not attempt to post to locked discussions.User (educator): "Show me who hasn't posted in the Week 5 discussion for CS 101."
Agent: Calls list_discussion_topics to find the Week 5 topic, then list_discussion_entries to get all posts, then cross-references with enrolled students. Outputs a participation summary listing students who have not posted.
User: "Send them a reminder."
Agent: Drafts a reminder message referencing the discussion deadline, shows it for confirmation, then calls send_conversation to message the non-participating students.
User (student): "I need to reply to Maria's post in the Case Study discussion."
Agent: Calls list_discussion_topics to find the Case Study topic, then list_discussion_entries to locate Maria's post, then get_discussion_entry_details to read the full content. Helps draft a reply that references Maria's key arguments, shows the draft for confirmation, then calls reply_to_discussion_entry.
canvas-morning-check for educators who want a full course status before diving into discussions.