canvas-api-mcp
Canvas MCP server for Canvas LMS: 16 curated student tools plus a gateway reaching all 1,116 Canvas API endpoints
Documentation
canvas-api-mcp
Never miss an assignment deadline again.
Ask your AI what's due and it reads the answer straight from Canvas:
real deadlines, real submission status, no copying anything across.
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 Ā·
skills Ā·
> 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_secret` cannot 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`, then `get_syllabus`, then
> `course_content` for 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_file` for the PDF, then `my_submission`
> for 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_api` to find the right endpoint, then
> `canvas_request` to 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.
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.
Note that the token expires. Since Instructure's October 2025 security update,
accounts holding only student roles must set an expiry no more than 120 days out,
and institutions often cap it lower (NUS allows 90). Write the date down: an expired
token makes every tool return `401` at once, which looks like a broken install rather
than a credential that simply ran out.
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? |
|---|---|
| Claude Code | no |
| Claude Desktop | no |
| Cursor | yes, above |
| VS Code | yes, above |
| LM Studio | yes, above |
| Zed | no |
| Windsurf | no (Windsurf only resolves servers in its own registry) |
Claude Code: ~/.claude.json
{
"mcpServers": {
"canvas": {
"command": "uvx",
"args": ["canvas-api-mcp"],
"env": {
"CANVAS_BASE_URL": "https://canvas.yourschool.edu",
"CANVAS_TOKEN": "your-token-here"
}
}
}
}Claude Desktop: claude_desktop_config.json
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"
}
}
}
}Cursor: ~/.cursor/mcp.json
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"
}
}
}
}VS Code: .vscode/mcp.json
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"
}
}
}
}LM Studio: mcp.json (Program ā Install ā Edit mcp.json)
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"
}
}
}
}Zed: settings.json
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"
}
}
}
}Windsurf: ~/.codeium/windsurf/mcp_config.json
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 |
|---|---|
| `whoami` | Identity and your role in each course |
| `get_calendar_feed_url` | Your private calendar `.ics` link (only when you ask for it) |
| `my_courses` | Active courses with code, term, role |
| `whats_due` | Everything due, soonest first |
| `my_grades` | Current score per course |
| `list_assignments` | A course's assignments and submission state |
| `get_assignment` | One assignment in full, with rubric |
| `my_submission` | Your submission, score, and feedback |
| `submit_assignment` āļø | Submit work |
| `course_announcements` | Recent announcements |
| `course_content` | Modules and their contents |
| `list_files` | Files in a course |
| `read_file` | Extract text from PDF/DOCX/PPTX/text |
| `get_page` | A Canvas wiki page by slug |
| `get_syllabus` | A course's syllabus |
| `read_discussion` | Topics, or one topic's replies |
| `post_discussion_reply` āļø | Post to a discussion |
| `search_canvas_api` | Find any endpoint by keyword (gateway) |
| `canvas_request` āļø | 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_assignment` can 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_file` fetches 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) and `CANVAS_TIMEOUT` (seconds, default 30).
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.
Frequently asked questions
What is canvas-api-mcp?
canvas-api-mcp is Canvas MCP server for Canvas LMS: 16 curated student tools plus a gateway reaching all 1,116 Canvas API endpoints
How do I install canvas-api-mcp?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is canvas-api-mcp open source?
Yes ā it is hosted on GitHub at https://github.com/JohannsenLum/canvas-api-mcp and has 2 stars.
Related MCP tools
Open-source coding agent memory. Records issues, attempts, fixes and decisions, then warns your agent before it repeats an approach that already failed. Native MCP server for Claude Code, Cursor, Antigravity and Codex. 100% local, no cloud, no telemetry. MIT.
AI-powered OSINT agent with interactive REPL, MCP server, and CLI. 19 tools. Works with Claude, GPT-4, or local models. For authorized security research only.
AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.
Control Gmail, Google Calendar, Docs, Sheets, Slides, Chat, Forms, Tasks, Search & Drive with AI - Comprehensive Google Workspace MCP Server & CLI Tool
Cut AI token costs 95%+ on code exploration. The leading MCP server for precise, symbol-level GitHub code retrieval via tree-sitter AST. Works with Claude Code, Cursor & any MCP client. 313B+ tokens saved.
Give your AI agents persistent, collective memory ā with deduplicating absorb, supersession lineage, semantic search, and a graph UI. Speaks MCP.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP