Allows users to manage their coursework through Canvas LMS, providing tools to list courses, view assignments, check grades, participate in discussions, and handle assignment submissions.
Integrates with the Instructure Canvas platform to facilitate access to course modules, announcements, syllabi, and student-instructor feedback.
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 LMS MCP ServerWhat assignments do I have due this week across all 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 LMS MCP Server for Claude
An MCP (Model Context Protocol) server that connects Claude to Canvas LMS, letting you manage your coursework through natural conversation.
Ask Claude things like:
"What assignments do I have due this week?"
"Show me the rubric for my essay assignment"
"What did my professor say in the feedback?"
"List all my courses"
"Are there any overdue assignments?"
Quick Start
1. Get Your Canvas API Token
Log in to Canvas
Click your profile picture โ Settings
Scroll to Approved Integrations
Click + New Access Token
Name it (e.g., "Claude") and click Generate Token
Copy the token - you won't see it again!
2. Install the MCP Server
# Clone this repository
git clone https://github.com/lucanardinocchi/canvas-mcp.git
cd canvas-mcp
# Install dependencies
npm install
# Build the project
npm run build3. Configure Claude Desktop
Open Claude Desktop's config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add (or merge) this configuration:
{
"mcpServers": {
"canvas": {
"command": "node",
"args": ["/FULL/PATH/TO/canvas-mcp/dist/index.js"],
"env": {
"CANVAS_API_TOKEN": "YOUR_TOKEN_HERE",
"CANVAS_BASE_URL": "https://your-school.instructure.com"
}
}
}
}Replace:
/FULL/PATH/TO/canvas-mcpwith the actual path where you cloned this repoYOUR_TOKEN_HEREwith your Canvas API tokenhttps://your-school.instructure.comwith your Canvas URL
Common Canvas URLs:
University | Canvas URL |
University of Sydney |
|
Generic Instructure |
|
Your school | Check your browser when logged into Canvas |
4. Restart Claude Desktop
Quit Claude Desktop completely (Cmd+Q / Alt+F4) and reopen it.
You should now see Canvas tools available in Claude!
What Can It Do?
๐ Courses
List all your enrolled courses
Get course details and syllabi
๐ Assignments
List assignments (filter by upcoming, overdue, etc.)
View full assignment details and instructions
See rubrics and grading criteria
Check your grades and submission status
๐ฌ Discussions
View discussion boards
Post new discussion entries
Reply to classmates
๐ค Submissions
Submit text assignments directly
Upload files for submission
View instructor feedback and comments
๐ Search
Find assignments by due date
Search course content
Get all upcoming work across all courses
All Available Tools
Tool | What it does |
| List your enrolled courses |
| Get details about a specific course |
| List assignments (with filters) |
| Get full assignment details + rubric |
| Get grading rubric for an assignment |
| View your submission and feedback |
| Submit text or URL to an assignment |
| Upload a file for submission |
| Browse course modules |
| Get course announcements |
| View discussion topics |
| Read discussion posts |
| Post to a discussion |
| Reply to a discussion post |
| Find assignments in a date range |
| Get work due in the next N days |
| Find past-due work |
| Search modules and assignments |
| Upcoming work across ALL courses |
Troubleshooting
"Canvas tools not showing up"
Make sure you restarted Claude Desktop completely
Check that the path in your config is correct
Verify your
claude_desktop_config.jsonis valid JSON
"401 Unauthorized" errors
Your API token is invalid or expired. Generate a new one in Canvas settings.
"403 Forbidden" errors
You don't have access to that resource. The course may have ended, or you're not enrolled.
"Connection refused" or network errors
Check that your CANVAS_BASE_URL is correct (no trailing slash).
Security Notes
โ ๏ธ Keep your API token secret!
Never commit your token to git
Don't share your token with others
Set an expiration date when creating tokens
Revoke tokens you no longer use (Canvas Settings โ Approved Integrations)
Your API token has the same access as your Canvas account - anyone with it can view your grades, submit assignments, etc.
Development
# Install dependencies
npm install
# Build once
npm run build
# Watch mode (auto-rebuild on changes)
npm run devProject Structure
canvas-mcp/
โโโ src/
โ โโโ index.ts # MCP server entry point
โ โโโ canvas-client.ts # Canvas API wrapper
โ โโโ tools/ # Tool implementations
โ โ โโโ courses.ts
โ โ โโโ assignments.ts
โ โ โโโ submissions.ts
โ โ โโโ discussions.ts
โ โ โโโ modules.ts
โ โ โโโ search.ts
โ โโโ types/
โ โโโ canvas.ts # TypeScript types
โโโ dist/ # Compiled output
โโโ package.json
โโโ tsconfig.jsonContributing
Contributions welcome! Feel free to:
Report bugs
Suggest new features
Submit pull requests
License
MIT - Use it however you want!
Acknowledgments
Built with:
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.