Allows interaction with the Canvas Learning Management System API, providing tools for managing courses, assignments, enrollments, and student grades within Canvas.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Canvas MCP Server V2.0what assignments are due this week in my courses?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Canvas MCP Server v2.3.0
A comprehensive Model Context Protocol (MCP) server for Canvas LMS with complete student, instructor, and account administration functionality
๐ What's New in v2.3.0
๐ NEW: Streamable HTTP transport support (
MCP_TRANSPORT=streamable-http)๐ฅ๏ธ Preserved: First-class stdio transport for local MCP clients
๐งช Added: Behavior tests for lifecycle, transports, and structured failure-path errors
๐งฑ Improved: Stricter tool schemas and codemode-oriented tool descriptions
๐ง FIXED: Course creation "page not found" error (missing
account_idparameter)๐จโ๐ผ Account Management: Complete account-level administration tools
๐ Reports & Analytics: Generate and access Canvas account reports
๐ฅ User Management: Create and manage users at the account level
๐ข Multi-Account Support: Handle account hierarchies and sub-accounts
โ API Compliance: All endpoints now follow proper Canvas API patterns
Related MCP server: School MCP
๐ฏ Key Features
๐ For Students
Course Management: Access all courses, syllabi, and course materials
Assignment Workflow: View, submit (text/URL/files), and track assignments
Communication: Participate in discussions, read announcements, send messages
Progress Tracking: Monitor grades, module completion, and calendar events
Quizzes: Take quizzes, view results and feedback
File Access: Browse and download course files and resources
๐จโ๐ซ For Instructors
Course Creation: Create and manage course structure (now with proper account support)
Grading: Grade submissions, provide feedback, manage rubrics
User Management: Enroll students, manage permissions
Content Management: Create assignments, quizzes, discussions
๐จโ๐ผ For Account Administrators (NEW!)
Account Management: Manage institutional Canvas accounts
User Administration: Create and manage users across accounts
Course Oversight: List and manage all courses within accounts
Reporting: Generate enrollment, grade, and activity reports
Sub-Account Management: Handle account hierarchies and structures
๐ ๏ธ Technical Excellence
Robust API: Automatic retries, pagination, comprehensive error handling
Cloud Ready: Docker containers, Kubernetes manifests, health checks
Well Tested: Unit tests, integration tests, mocking, coverage reports
Type Safe: Full TypeScript implementation with strict types
50+ Tools: Comprehensive coverage of Canvas LMS functionality
Quick Start
Option 1: Claude Desktop Integration (Recommended MCP Setup)
Add to claude_desktop_config.json:
Option 2: NPM Package
Option 3: Docker
Transport Modes
The server supports two explicit transport modes:
stdio(default): best for Claude Desktop/Codex/Cursor local MCP wiring.streamable-http: best for local HTTP integrations and containerized workflows.
Transport environment variables
๐ผ Account Admin Workflow Examples
Create a New Course (FIXED!)
Now properly creates courses with required account_id parameter
Manage Users
Creates user accounts with proper pseudonym and enrollment setup
Generate Reports
Initiates Canvas reporting system for institutional analytics
List Account Courses
Advanced filtering and searching across account course catalogs
๐ Student Workflow Examples
Check Today's Assignments
Lists upcoming assignments with due dates, points, and submission status
Submit an Assignment
Guides through text submission with formatting options
Check Grades
Shows current scores, grades, and assignment feedback
Participate in Discussions
Displays recent discussion topics and enables posting responses
Track Progress
Shows module completion status and next items to complete
Getting Canvas API Token
Log into Canvas โ Account โ Settings
Scroll to "Approved Integrations"
Click "+ New Access Token"
Enter description: "Claude MCP Integration"
Copy the generated token Save securely!
โ ๏ธ Account Admin Note: For account-level operations, ensure your API token has administrative privileges.
Production Deployment
Docker Compose
Kubernetes
Health Monitoring
Development
๐ Available Tools (50+ Tools)
canvas_health_check- Check API connectivitycanvas_list_courses- List all your coursescanvas_get_course- Get detailed course infocanvas_list_assignments- List course assignmentscanvas_get_assignment- Get assignment detailscanvas_submit_assignment- Submit assignment workcanvas_get_submission- Check submission statuscanvas_list_modules- List course modulescanvas_get_module- Get module detailscanvas_list_module_items- List items in a modulecanvas_mark_module_item_complete- Mark items completecanvas_list_discussion_topics- List discussion topicscanvas_get_discussion_topic- Get discussion detailscanvas_post_to_discussion- Post to discussionscanvas_list_announcements- List course announcementscanvas_get_user_grades- Get your gradescanvas_get_course_grades- Get course-specific gradescanvas_get_dashboard- Get dashboard infocanvas_get_dashboard_cards- Get course cardscanvas_get_upcoming_assignments- Get due datescanvas_list_calendar_events- List calendar eventscanvas_list_files- List course filescanvas_get_file- Get file detailscanvas_list_folders- List course folderscanvas_list_pages- List course pagescanvas_get_page- Get page contentcanvas_list_conversations- List messagescanvas_get_conversation- Get conversation detailscanvas_create_conversation- Send messagescanvas_list_notifications- List notificationscanvas_get_syllabus- Get course syllabuscanvas_get_user_profile- Get user profilecanvas_update_user_profile- Update profile
canvas_create_course- Create new courses (FIXED: now requires account_id)canvas_update_course- Update course settingscanvas_create_assignment- Create assignmentscanvas_update_assignment- Update assignmentscanvas_list_assignment_groups- List assignment groupscanvas_submit_grade- Grade submissionscanvas_enroll_user- Enroll studentscanvas_list_quizzes- List course quizzescanvas_get_quiz- Get quiz detailscanvas_create_quiz- Create quizzescanvas_start_quiz_attempt- Start quiz attemptscanvas_list_rubrics- List course rubricscanvas_get_rubric- Get rubric details
canvas_get_account- Get account detailscanvas_list_account_courses- List courses in an accountcanvas_list_account_users- List users in an accountcanvas_create_user- Create new users in accountscanvas_list_sub_accounts- List sub-accountscanvas_get_account_reports- List available reportscanvas_create_account_report- Generate account reports
๐ง Breaking Changes in v2.2.0
Course Creation Fix
BEFORE (Broken):
AFTER (Fixed):
๐ Example Claude Conversations
Student: "I need to check my upcoming assignments and submit my English essay"
Claude: I'll help you check your upcoming assignments and then assist with submitting your English essay. Let me start by getting your upcoming assignments...
[Claude uses canvas_get_upcoming_assignments then helps with canvas_submit_assignment]
Instructor: "Create a new Advanced Physics course in the Science department and enroll my teaching assistant"
Claude: I'll help you create the Advanced Physics course in your Science department account and then enroll your TA...
[Claude uses canvas_create_course with proper account_id, then canvas_enroll_user]
Administrator: "Generate an enrollment report for all Computer Science courses this semester"
Claude: I'll generate a comprehensive enrollment report for your CS courses...
[Claude uses canvas_list_account_courses with filters, then canvas_create_account_report]
๐ Troubleshooting
Common Issues:
โ 401 Unauthorized: Check your API token and permissions
โ 404 Not Found: Verify course/assignment IDs and access rights
โ "Page not found" on course creation: Update to v2.2.0 for account_id fix
โ Timeout: Increase
CANVAS_TIMEOUTor check network connectivity
Debug Mode:
Health Check:
๐ค Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
Quick Contribution Setup
๐ Roadmap
v2.3: Enhanced reporting, bulk operations, advanced search
v2.4: Mobile support, offline capability, analytics dashboard
v3.0: Multi-tenant, GraphQL API, AI-powered insights
๐ Support & Community
๐ Bug Reports: GitHub Issues
๐ฌ Questions: GitHub Discussions
๐ Documentation: Wiki
Appendix: MCP in Practice (Code Execution, Tool Scale, and Safety)
Last updated: 2026-02-24
Why This Appendix Exists
MCP is still one of the most useful interoperability layers for agentic tooling. The tradeoff is that large MCP servers can expose dozens of tools, and naive tool-calling can flood context windows with tool schemas, call traces, and low-signal chatter.
In practice, larger tool surfaces only help when orchestration stays token-efficient and execution behavior is constrained.
The Shift to Code Execution / Code Mode
Recent production workflows move orchestration out of conversational turns and into executable loops. This keeps context overhead lower, improves determinism, and makes runs auditable.
Core reading:
Recommended Setup for Power Users
For lower-noise, repeatable MCP usage, start with codemode-oriented routing:
Even with strong setup, model behavior can be hit-or-miss across providers and versions. Keep retries and deterministic fallbacks.
Peter Steinberger Workflow Pattern
A high-leverage pattern is turning broad MCP tool surfaces into narrower CLI/task interfaces:
What Works Best With Which MCP Clients
Claude Code / Codex / Cursor agent workflows: usually strong for direct MCP + code-execution loops.
Thin hosted chat clients: often safer with wrapped CLIs/gateways instead of full raw tool exposure.
High-tool-count servers: usually better when split into narrow task gateways.
This ecosystem changes quickly. If you are reading this now, parts of this section may already be out of date.
Prompt Injection: Risks, Consequences, and Mitigations
Prompt injection remains an open problem for tool-using agents. It is manageable, but not solved.
Primary risks:
Hidden instructions in retrieved content or tool output.
Secret/token exfiltration through unintended calls.
Unauthorized state changes in systems or data.
Mitigation baseline:
Least-privilege credentials and scoped tokens.
Destination/action allowlists and strict schema validation.
Human confirmation for destructive operations.
Sandboxed execution and resource limits.
Structured logging and replayable execution traces.
Treat every tool output as untrusted input unless explicitly verified.
๐ License
MIT License - see LICENSE file for details.
โญ Star this repo if it helps you! โญ