canvas-api-mcp
This server connects your AI assistant to Canvas LMS, enabling it to read and interact with your courses, assignments, grades, and more using your personal token.
Read: Identity (
whoami), active/completed courses, deadlines (whats_due), grades (my_grades), assignment details with rubrics (list_assignments,get_assignment), submission scores/feedback (my_submission), announcements, module structure, files/pages (PDF/DOCX/PPTX extraction), discussions, and a private calendar feed URL.Write: Submit assignments (text, URL, or file upload) and post discussion replies.
Gateway: Search all ~1,116 Canvas API endpoints (
search_canvas_api) and execute any with arbitrary HTTP methods (canvas_request, dry-run supported).Extras: Automated skills (
week_ahead,study_pack,grade_check) and quick resource links (canvas://me,canvas://courses,canvas://api/catalog).
Provides tools for interacting with the Canvas LMS API, enabling AI agents to manage courses, assignments, grades, discussions, files, and submissions, plus a gateway to access any Canvas endpoint.
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-api-mcpWhat's due this week?"
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-api-mcp
An MCP server for Canvas LMS. 16 curated tools for everyday student work, plus a gateway that reaches every endpoint your Canvas instance exposes.
π Documentation: mcp.johannsenlum.com/canvas-lms β install guide Β· tool reference Β· skills Β· compliance
Personal-use software. Canvas's API Policy requires OAuth for applications used by multiple people, and Canvas OAuth cannot be implemented safely by locally installed software (no PKCE, and
client_secretcannot be shipped in a package). Use this with your own token on your own account. See Compliance.
What you can ask it
Real prompts, and which tool answers them.
You: What's due this week? Claude: (calls
whats_due) β You have 3 things due: Problem Set 4 (Thu, CS3230), a discussion reply (Fri, IS4302), and the Milestone 2 report (Sun, EE2211).
You: How am I doing in my databases course, and what's on the syllabus for week 6? Claude: (calls
my_grades, thenget_pagefor the syllabus, thencourse_contentfor the week 6 module) β You're at 87% overall. Week 6 covers normalization and has a reading plus a lab file due Friday.
You: Summarize the PDF lecture notes for lecture 8 and pull up my submission for the essay so I can see the feedback. Claude: (calls
list_files+read_filefor the PDF, thenmy_submissionfor the essay) β ...
You: Reply to the "Project teams" discussion and say I'm free after 3pm for the group meeting. Claude: (calls
post_discussion_replyβοΈ) β Posted to the thread.
You: Has Canvas ever given me quiz statistics broken down by question, across the whole semester? Claude: (calls
search_canvas_apito find the right endpoint, thencanvas_requestto call it) β ...
The last example is the point of the gateway tools: if an endpoint exists on your
Canvas instance, search_canvas_api can find it and canvas_request can call it,
even though only 16 tools are hand-curated.
Related MCP server: Canvas MCP
Install
Prerequisites
Python 3.11+
A Canvas personal access token. Your institution must allow students to create them: check Canvas β Account β Settings β Approved Integrations for a "+ New access token" button. Full walkthrough with screenshots: mcp.johannsenlum.com/canvas-lms/install.
Running the server
canvas-api-mcp is published on PyPI. Run it with:
uvx canvas-api-mcpInstall from source (contributors / unreleased main). Not part of the
normal install path above β only needed if you want the latest unreleased
code instead of the published PyPI release:
uvx --from git+https://github.com/JohannsenLum/canvas-api-mcp canvas-api-mcpOr run from a local clone:
git clone https://github.com/JohannsenLum/canvas-api-mcp
cd canvas-api-mcp
uv syncQuick install (one-click)
One-click deeplinks exist for Cursor, VS Code, and LM Studio only β no other
client has a documented install-link format. These prefill the config below but
still need CANVAS_BASE_URL and CANVAS_TOKEN filled in afterward.
All clients (manual config)
Your token stays on your machine, in your own config file. It is never transmitted anywhere except directly to your Canvas instance.
Client | Deeplink? |
no | |
no | |
yes, above | |
yes, above | |
yes, above | |
no | |
no (Windsurf only resolves servers in its own registry) |
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
No one-click install exists for Claude Desktop (it installs .mcpb bundles, not
deeplinks) β copy this JSON in via Settings β Developer β Edit Config:
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}Fallback for the button above, or if you'd rather paste it directly:
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}Fallback for the button above, or if you'd rather paste it directly. Note VS
Code uses a servers key, not mcpServers:
{
"servers": {
"canvas": {
"type": "stdio",
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}Fallback for the button above, or if you'd rather paste it directly:
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}No deeplink exists for Zed β add this under context_servers in your Zed
settings:
{
"context_servers": {
"canvas": {
"source": "custom",
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}No deeplink exists for Windsurf β it only resolves servers from its own registry, so this has to be pasted in manually via Windsurf Settings β MCP Servers β Edit raw config:
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}Tools
Tool | What it does |
| Identity and your role in each course |
| Your private calendar |
| Active courses with code, term, role |
| Everything due, soonest first |
| Current score per course |
| A course's assignments and submission state |
| One assignment in full, with rubric |
| Your submission, score, and feedback |
| Submit work |
| Recent announcements |
| Modules and their contents |
| Files in a course |
| Extract text from PDF/DOCX/PPTX/text |
| A Canvas page, e.g. the syllabus |
| Topics, or one topic's replies |
| Post to a discussion |
| Find any endpoint by keyword (gateway) |
| Execute any endpoint (gateway) |
βοΈ writes to Canvas. That's 3 write tools total: submit_assignment,
post_discussion_reply, and canvas_request when called with a non-GET method
(GET calls through canvas_request are read-only).
search_canvas_api + canvas_request reach all ~1,116 endpoints your instance
exposes. What they may do is decided by Canvas from your token's permissions β a
teacher token unlocks educator endpoints with no change to this server.
Prompts
week_ahead, study_pack, grade_check.
Resources
canvas://me, canvas://courses, canvas://api/catalog.
Skills
If your client supports the skills convention:
npx skills add JohannsenLum/canvas-api-mcpOther institutions
Works with any Canvas instance β set CANVAS_BASE_URL. The catalog of ~1,116
endpoints ships inside the package at
canvas_api_mcp/data/catalog.json. To match your deployment's exact feature
set, regenerate it:
python scripts/build_catalog.py https://canvas.yourschool.edu -o data/catalog.jsonCompliance
Academic integrity.
submit_assignmentcan submit anything, including AI-generated work. Submitting work that is not your own breaches the academic integrity rules of essentially every institution, and Canvas's API Policy explicitly prohibits use that violates them. That is on you.Rate limiting. The client throttles against Canvas's published quota. Do not remove it β overloading the API is prohibited.
Course material.
read_filefetches materials for your own study. Do not redistribute them.Your token is password-equivalent. It can read your grades and submit work as you. Set an expiry. Never commit it.
Personal-use scope. Phase 1 targets a single student using their own token. There are no curated educator tools; Canvas's OAuth flow has no PKCE, so this locally-installed server cannot implement the multi-user OAuth that Canvas's API Policy requires for anything broader. Do not repackage this as a multi-tenant service.
Development
uv sync
uv run pytest -v
# Live tests against your real account (read-only)
CANVAS_LIVE_TESTS=1 uv run pytest tests/test_live.py -vEnvironment variables: CANVAS_BASE_URL, CANVAS_TOKEN, optional
CANVAS_MAX_PAGES (default 10). See env.template.
Contributing
Issues and pull requests are welcome β see CONTRIBUTING.md for setup, the architectural rules worth knowing before you change anything, and the bar for adding a new curated tool.
Found a security problem? Do not open a public issue. See SECURITY.md for private reporting β particularly important here, since this project handles password-equivalent Canvas tokens.
Changes are recorded in CHANGELOG.md.
Licence
MIT Β© 2026 Johannsen Lum.
Use it, change it, redistribute it, build something commercial on it β the only condition is that you keep the copyright notice and licence text. It comes with no warranty of any kind.
Contributions are accepted under the same licence.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceMCP server for Canvas LMS, providing 115+ tools to read courses, assignments, submissions, rubrics, quizzes; grade, comment, manage course content, and handle Canvas admin workflows from any AI agent.Last updated241006315MIT
- Alicense-qualityDmaintenanceA local MCP server for Canvas LMS that enables querying courses, assignments, grades, modules, and more from any MCP-compatible AI client.Last updated15MIT
- Flicense-qualityDmaintenanceMCP server for Canvas LMS that exposes courses, assignments, modules, pages, files, grades, and submissions as tools for AI agents.Last updated
- Alicense-qualityDmaintenanceMCP server that provides tools to read UBC Canvas LMS data, including courses, assignments, announcements, submissions, and calendar, for use with Claude Desktop, Claude Code, or n8n AI agents.Last updated15MIT
Related MCP Connectors
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
MCP server for the Inistate platform: module discovery, entry management, and activity submission.
A MCP server built for developers enabling Git based project management with project and personalβ¦
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JohannsenLum/canvas-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server