The Canvas MCP Server enables natural language interaction with Canvas LMS through Claude Desktop, providing comprehensive course management with FERPA-compliant student data protection.
Course Administration: List and manage courses, access detailed course information, pages, modules, and syllabi
Assignment & Submission Management: Handle assignments, submissions, grading, and extensive peer review operations including assignment, analytics, completion tracking, and automated reminders
Rubric Management: Full CRUD operations for rubrics, association with assignments, and rubric-based grading
Discussions & Communication: Create and manage discussion topics, announcements, and Canvas conversations with bulk messaging capabilities
Student Analytics: View detailed analytics on student performance, participation, progress, and assignment statistics
Privacy & FERPA Compliance: Automatic student data anonymization, PII filtering, and local-only processing with de-anonymization maps for faculty
Content Management: Access, edit, and organize course content including pages and modules with search capabilities
Reporting & Bulk Operations: Generate comprehensive reports in multiple formats (markdown, CSV, JSON) and perform bulk operations like message sending and announcement management
Scheduling: Create announcements and discussions with delayed posting and automatic locking capabilities
Provides access to Canvas Learning Management System API, allowing users to list and manage courses, access assignments and submissions, view announcements, retrieve course syllabi and modules, manage users and enrollments, and generate course summaries
Canvas MCP Server
This repository contains a Model Context Protocol (MCP) server implementation for interacting with the Canvas Learning Management System API. The server is designed to work with Claude Desktop and other MCP-compatible clients.
Note: Recently refactored to a modular architecture for better maintainability. The legacy monolithic implementation has been archived.
Overview
The Canvas MCP Server bridges the gap between Claude Desktop and Canvas Learning Management System, providing both students and educators with an intelligent interface to their Canvas environment. Built on the Model Context Protocol (MCP), it enables natural language interactions with Canvas data.
Related MCP server: Canvas MCP Server V2.0
š Latest Release: v1.0.4
Released: November 10, 2025 | View Full Release Notes
Major Features
š Code Execution Environment - Execute custom TypeScript code for token-efficient bulk operations (99.7% token savings)
š New MCP Tools:
bulk_grade_submissions- Efficient batch grading with optional rubric assessmentbulk_grade_discussions- Token-efficient discussion grading APIsearch_canvas_tools- Discover available MCP tools dynamically
Improvements
MCP 2.10 Compliance - Updated FastMCP to >=2.10.0
Structured Logging - Standardized error handling and logging
Flexible Grading - Rubric assessment now optional for simple grading scenarios
GitHub Actions Integration - Automated workflows and chat session exports
Enhanced Validation - Better error handling and validation feedback
Recent Bug Fix
Fixed description truncation in
get_assignment_detailstool (full HTML descriptions now returned)
For Students šØāš
Get AI-powered assistance with:
Tracking upcoming assignments and deadlines
Monitoring your grades across all courses
Managing peer review assignments
Accessing course content and discussions
Organizing your TODO list
For Educators šØāš«
Enhance your teaching with:
Assignment and grading management
Student analytics and performance tracking
Discussion and peer review facilitation
FERPA-compliant student data handling
Bulk messaging and communication tools
ā Get Started as an Educator
š Privacy & Data Protection
For Educators: FERPA Compliance
Complete FERPA compliance through systematic data anonymization when working with student data:
Source-level data anonymization converts real names to consistent anonymous IDs (Student_xxxxxxxx)
Automatic email masking and PII filtering from discussion posts and submissions
Local-only processing with configurable privacy controls (
ENABLE_DATA_ANONYMIZATION=true)FERPA-compliant analytics: Ask "Which students need support?" without exposing real identities
De-anonymization mapping tool for faculty to correlate anonymous IDs with real students locally
All student data is anonymized before it reaches AI systems. See Educator Guide for configuration details.
For Students: Your Data Stays Private
Your data only: Student tools access only your own Canvas data via Canvas API's "self" endpoints
Local processing: Everything runs on your machine - no data sent to external servers
No tracking: Your Canvas usage and AI interactions remain private
No anonymization needed: Since you're only accessing your own data, there are no privacy concerns
Prerequisites
Python 3.10+ - Required for modern features and type hints
Canvas API Access - API token and institution URL
MCP Client - Claude Desktop (recommended) or other MCP-compatible client
Supported MCP Clients
Canvas MCP works with any application that supports the Model Context Protocol. Popular options include:
Recommended:
Claude Desktop - Official Anthropic desktop app with full MCP support
AI Coding Assistants:
Zed - High-performance code editor with built-in MCP support
Cursor - AI-first code editor
Windsurf IDE (by Codeium) - AI-powered development environment
Continue - Open-source AI code assistant
Development Platforms:
Replit - Cloud-based coding platform with MCP integration
Sourcegraph Cody - AI coding assistant with MCP support
Enterprise:
Microsoft Copilot Studio - MCP support in enterprise environments
See the official MCP clients list for more options.
Note: While Canvas MCP is designed to work with any MCP client, setup instructions in this guide focus on Claude Desktop. Configuration for other clients may vary.
Installation
1. Install Dependencies
2. Configure Environment
Get your Canvas API token from: Canvas ā Account ā Settings ā New Access Token
Note for Students: Some educational institutions restrict API token creation for students. If you see an error like "There is a limit to the number of access tokens you can create" or cannot find the token creation option, contact your institution's Canvas administrator or IT support department to request API access or assistance in creating a token.
3. Claude Desktop Setup
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
Tip: Pointing Claude at the absolute path to your virtualenv binary avoids issues with shell-specific PATH entries (e.g., pyenv shims) that can cause
ModuleNotFoundError: No module named 'canvas_mcp'when Claude launches the server.
Verification
Test your setup:
Available Tools
The Canvas MCP Server provides a comprehensive set of tools for interacting with the Canvas LMS API. These tools are organized into logical categories for better discoverability and maintainability.
Tool Categories
Student Tools (New!)
Personal assignment tracking and deadline management
Grade monitoring across all courses
TODO list and peer review management
Submission status tracking
Shared Tools (Both Students & Educators)
Course Tools - List and manage courses, get detailed information, generate summaries with syllabus content
Discussion & Announcement Tools - Manage discussions, announcements, and replies
Page & Content Tools - Access pages, modules, and course content
Educator Tools
4. Assignment Tools - Handle assignments, submissions, and peer reviews with analytics
5. Rubric Tools - Full CRUD operations for rubrics with validation, association management, and grading (including bulk_grade_submissions for efficient batch grading)
6. User & Enrollment Tools - Manage enrollments, users, and groups
7. Analytics Tools - View student analytics, assignment statistics, and progress tracking
8. Messaging Tools - Send messages and announcements to students
Developer Tools
9. Discovery Tools - Search and explore available code execution API operations with search_canvas_tools and list_code_api_modules
10. Code Execution Tools - Execute TypeScript code with execute_typescript for token-efficient bulk operations (99.7% token savings!)
š View Full Tool Documentation for detailed information about all available tools.
š Code Execution API (New!)
The Canvas MCP now supports code execution patterns for maximum token efficiency when performing bulk operations.
When to Use Each Approach
Traditional Tool Calling (for simple queries):
ā Best for: Single queries, small datasets, quick lookups
Bulk Grade Submissions Tool (for batch grading with predefined grades):
ā Best for: Batch grading when you already have the grades/scores, concurrent processing
Code Execution (for bulk operations with custom logic):
ā Best for: Bulk processing with custom analysis logic, large datasets, complex conditions
Token Savings Example
Scenario: Grading 90 Jupyter notebook submissions
Approach | Token Usage | Efficiency |
Traditional | 1.35M tokens | Loads all submissions into context |
Code Execution | 3.5K tokens | 99.7% reduction! š |
Example: Bulk Grading
Example: Bulk Discussion Grading
Grade discussion posts with initial post + peer review requirements:
Features:
Automatically analyzes initial posts vs peer reviews
Configurable grading criteria with point allocation
Optional late penalties with customizable deadline
Dry run mode to preview grades before applying
Concurrent processing with rate limiting
Returns comprehensive participation analytics
Discovering Available Tools
The Canvas MCP Server includes a search_canvas_tools MCP tool that helps you discover and explore available code execution API operations. This tool searches through the TypeScript code API files and returns information about available Canvas operations.
Tool Parameters:
query(string, optional): Search term to filter tools by keyword (e.g., "grading", "assignment", "discussion"). Empty string returns all available tools.detail_level(string, optional): Controls how much information to return. Options:"names": Just file paths (most efficient for quick lookups)"signatures": File paths + function signatures + descriptions (recommended, default)"full": Complete file contents (use sparingly for detailed inspection)
Example Usage:
Ask Claude in natural language:
"Search for grading tools in the code API"
"What bulk operations are available?"
"Show me all code API tools"
Or use directly via MCP:
Returns: JSON response with:
query: The search term useddetail_level: The detail level requestedcount: Number of matching tools foundtools: Array of matching tools with requested detail level
Code API File Structure
How It Works
Discovery: Use
search_canvas_toolsto find available operationsExecution: Claude reads TypeScript code API files and executes them locally
Processing: Data stays in execution environment (no context cost!)
Results: Only summaries flow back to Claude's context
š View Bulk Grading Example for a detailed walkthrough.
Usage with MCP Clients
This MCP server works seamlessly with any MCP-compatible client:
Automatic Startup: MCP clients start the server when needed
Tool Integration: Canvas tools appear in your AI assistant's interface
Natural Language: Interact naturally with prompts like:
Students:
"What assignments do I have due this week?"
"Show me my current grades"
"What peer reviews do I need to complete?"
"Have I submitted everything for BADM 350?"
Educators:
"Which students haven't submitted the latest assignment?"
"Create an announcement about tomorrow's exam"
"Show me peer review completion analytics"
Quick Start Examples
New to Canvas MCP? Check out these practical guides:
Student Quick Start - Common tasks for students
Educator Quick Start - Essential workflows for teachers
Real-World Workflows - Complete scenarios combining multiple features
Common Issues & Solutions - Troubleshooting guide
Bulk Grading Example - Token-efficient batch grading
Project Structure
Modern Python package structure following 2025 best practices:
Documentation
Tool Documentation - Complete reference for all available tools
Pages Implementation Guide - Comprehensive Pages feature guide
Course Documentation Template - Hybrid approach for efficient course documentation
Development Guide - Architecture details and development reference
Technical Details
Modern Architecture (2025)
Built with current Python ecosystem best practices:
Package Structure: Modern
src/layout withpyproject.tomlDependency Management: Fast
uvpackage manager with locked dependenciesConfiguration: Environment-based config with validation and templates
Entry Points: Proper CLI commands via
pyproject.tomlscriptsType Safety: Full type hints and runtime validation
Core Components
FastMCP Framework: Robust MCP server implementation with tool registration
Async Architecture:
httpxclient with connection pooling and rate limitingSmart Caching: Intelligent request caching with configurable TTL
Configuration System: Environment-based config with validation and defaults
Educational Focus: Tools designed for real teaching workflows
Dependencies
Modern Python packages (see pyproject.toml):
fastmcp: MCP server frameworkhttpx: Async HTTP clientpython-dotenv: Environment configurationpydantic: Data validation and settingspython-dateutil: Date/time handling
Performance Features
Connection Pooling: Reuse HTTP connections for efficiency
Request Caching: Minimize redundant Canvas API calls
Async Operations: Non-blocking I/O for concurrent requests
Smart Pagination: Automatic handling of Canvas API pagination
Rate Limiting: Respect Canvas API limits with backoff
Development Tools
Automated Setup: One-command installation script
Configuration Testing: Built-in connection and config testing
Type Checking:
mypysupport for type safetyCode Quality:
ruffandblackfor formatting and linting
For contributors, see the Development Guide for detailed architecture and development reference.
Troubleshooting
If you encounter issues:
Server Won't Start - Verify your Configuration setup:
.envfile, virtual environment path, and dependenciesAuthentication Errors - Check your Canvas API token validity and permissions
Connection Issues - Verify Canvas API URL correctness and network access
Debugging - Check Claude Desktop console logs or run server manually for error output
Security & Privacy Features
API Security
Your Canvas API token grants access to your Canvas account
Never commit your
.envfile to version controlThe server runs locally on your machine - no external data transmission
Consider using a token with limited permissions if possible
Privacy Controls (Educators Only)
Educators working with student data can enable FERPA-compliant anonymization:
Students don't need anonymization since they only access their own data.
For detailed privacy configuration, see:
Educator Guide - FERPA compliance and anonymization
Student Guide - Privacy information for students
Publishing to MCP Registry
This server is published to the Model Context Protocol Registry for easy installation.
Automated Publishing (Recommended)
Publishing is automated via GitHub Actions:
Prepare a release:
# Update version in pyproject.toml # Update CHANGELOG if applicable git commit -am "chore: bump version to X.Y.Z" git pushCreate and push a version tag:
git tag vX.Y.Z git push origin vX.Y.ZAutomated workflow:
Runs tests
Builds Python package
Publishes to PyPI
Publishes to MCP Registry using GitHub OIDC
Prerequisites for Publishing
PyPI Account: Create account at pypi.org
Trusted Publisher Setup (recommended, no tokens needed):
Visit PyPI Trusted Publishers
Add a "pending publisher" for your repository:
Owner:
vishalsachdevRepository:
canvas-mcpWorkflow:
publish-mcp.ymlEnvironment: (leave blank)
This reserves the package name and enables tokenless publishing
Alternative: Use API token (legacy method - not recommended):
Generate token at PyPI ā Account Settings ā API tokens
Add as
PYPI_API_TOKENsecret in repository settingsUpdate workflow to use
password: ${{ secrets.PYPI_API_TOKEN }}
Manual Publishing (Alternative)
For manual publishing:
Registry Validation
The server.json configuration is automatically validated against the MCP schema during CI/CD. To validate locally:
Contributing
Contributions are welcome! Feel free to:
Submit issues for bugs or feature requests
Create pull requests with improvements
Share your use cases and feedback
License
This project is licensed under the MIT License - see the LICENSE file for details.
Created by Vishal Sachdev