Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
A comprehensive Model Context Protocol (MCP) server for Canvas LMS with full student functionality and account management 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 fail Capability contract not published. No trust telemetry is available yet. 83 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
canvas-mcp-server is best for canvas, lms, mcp workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
A comprehensive Model Context Protocol (MCP) server for Canvas LMS with full student functionality and account management 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 fail
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 83 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Dmontgomery40
Artifacts
0
Benchmarks
0
Last release
2.3.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 83 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/DMontgomery40/mcp-canvas-lms.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Dmontgomery40
Protocol compatibility
MCP
Adoption signal
83 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
json
{
"mcpServers": {
"canvas-mcp-server": {
"command": "npx",
"args": ["-y", "canvas-mcp-server"],
"env": {
"CANVAS_API_TOKEN": "your_token_here",
"CANVAS_DOMAIN": "your_school.instructure.com"
}
}
}
}bash
# Install globally npm install -g canvas-mcp-server # Configure export CANVAS_API_TOKEN="your_token_here" export CANVAS_DOMAIN="your_school.instructure.com" # Run canvas-mcp-server
bash
docker run -d \ --name canvas-mcp \ -p 3000:3000 \ -e CANVAS_API_TOKEN="your_token" \ -e CANVAS_DOMAIN="school.instructure.com" \ -e MCP_TRANSPORT="streamable-http" \ -e MCP_HTTP_HOST="0.0.0.0" \ -e MCP_HTTP_PORT="3000" \ -e MCP_HTTP_PATH="/mcp" \ ghcr.io/dmontgomery40/mcp-canvas-lms:latest
bash
# Required Canvas auth CANVAS_API_TOKEN=your_token CANVAS_DOMAIN=your_school.instructure.com # Transport selection MCP_TRANSPORT=stdio # or streamable-http # Streamable HTTP settings MCP_HTTP_HOST=127.0.0.1 MCP_HTTP_PORT=3000 MCP_HTTP_PATH=/mcp MCP_HTTP_STATEFUL=true MCP_HTTP_JSON_RESPONSE=true MCP_HTTP_ALLOWED_ORIGINS=
text
"Create a new course called 'Advanced Biology' in account 123"
text
"Create a new student user John Doe with email john.doe@school.edu in our main account"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
A comprehensive Model Context Protocol (MCP) server for Canvas LMS with full student functionality and account management 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 fail
A comprehensive Model Context Protocol (MCP) server for Canvas LMS with complete student, instructor, and account administration functionality
MCP_TRANSPORT=streamable-http)account_id parameter)Add to claude_desktop_config.json:
{
"mcpServers": {
"canvas-mcp-server": {
"command": "npx",
"args": ["-y", "canvas-mcp-server"],
"env": {
"CANVAS_API_TOKEN": "your_token_here",
"CANVAS_DOMAIN": "your_school.instructure.com"
}
}
}
}
# Install globally
npm install -g canvas-mcp-server
# Configure
export CANVAS_API_TOKEN="your_token_here"
export CANVAS_DOMAIN="your_school.instructure.com"
# Run
canvas-mcp-server
docker run -d \
--name canvas-mcp \
-p 3000:3000 \
-e CANVAS_API_TOKEN="your_token" \
-e CANVAS_DOMAIN="school.instructure.com" \
-e MCP_TRANSPORT="streamable-http" \
-e MCP_HTTP_HOST="0.0.0.0" \
-e MCP_HTTP_PORT="3000" \
-e MCP_HTTP_PATH="/mcp" \
ghcr.io/dmontgomery40/mcp-canvas-lms:latest
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.# Required Canvas auth
CANVAS_API_TOKEN=your_token
CANVAS_DOMAIN=your_school.instructure.com
# Transport selection
MCP_TRANSPORT=stdio # or streamable-http
# Streamable HTTP settings
MCP_HTTP_HOST=127.0.0.1
MCP_HTTP_PORT=3000
MCP_HTTP_PATH=/mcp
MCP_HTTP_STATEFUL=true
MCP_HTTP_JSON_RESPONSE=true
MCP_HTTP_ALLOWED_ORIGINS=
"Create a new course called 'Advanced Biology' in account 123"
Now properly creates courses with required account_id parameter
"Create a new student user John Doe with email john.doe@school.edu in our main account"
Creates user accounts with proper pseudonym and enrollment setup
"Generate an enrollment report for account 456 for the current term"
Initiates Canvas reporting system for institutional analytics
"Show me all published Computer Science courses in our Engineering account"
Advanced filtering and searching across account course catalogs
"What assignments do I have due this week?"
Lists upcoming assignments with due dates, points, and submission status
"Help me submit my essay for English 101 Assignment 3"
Guides through text submission with formatting options
"What's my current grade in Biology?"
Shows current scores, grades, and assignment feedback
"Show me the latest discussion posts in my Philosophy class"
Displays recent discussion topics and enables posting responses
"What modules do I need to complete in Math 200?"
Shows module completion status and next items to complete
โ ๏ธ Account Admin Note: For account-level operations, ensure your API token has administrative privileges.
git clone https://github.com/DMontgomery40/mcp-canvas-lms.git
cd mcp-canvas-lms
cp .env.example .env
# Edit .env with your Canvas credentials
docker-compose up -d
kubectl create secret generic canvas-mcp-secrets \
--from-literal=CANVAS_API_TOKEN="your_token" \
--from-literal=CANVAS_DOMAIN="school.instructure.com"
kubectl apply -f k8s/
# Check application health
curl http://localhost:3000/health
# Or use the built-in health check
npm run health-check
# Setup development environment
git clone https://github.com/DMontgomery40/mcp-canvas-lms.git
cd mcp-canvas-lms
npm install
# Start development with hot reload
npm run dev:watch
# Run tests
npm run test
npm run coverage
# Code quality
npm run lint
npm run type-check
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 profilecanvas_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 detailscanvas_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 reportsBEFORE (Broken):
{
"tool": "canvas_create_course",
"arguments": {
"name": "My Course" // โ Missing account_id - caused "page not found"
}
}
AFTER (Fixed):
{
"tool": "canvas_create_course",
"arguments": {
"account_id": 123, // โ
Required account_id
"name": "My Course",
"course_code": "CS-101"
}
}
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]
Common Issues:
CANVAS_TIMEOUT or check network connectivityDebug Mode:
export LOG_LEVEL=debug
npm start
Health Check:
npm run health-check
We welcome contributions! See CONTRIBUTING.md for guidelines.
git clone https://github.com/DMontgomery40/mcp-canvas-lms.git
cd mcp-canvas-lms
npm install
npm run dev:watch
# Make changes, add tests, submit PR
Last updated: 2026-02-24
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.
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:
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.
A high-leverage pattern is turning broad MCP tool surfaces into narrower CLI/task interfaces:
This ecosystem changes quickly. If you are reading this now, parts of this section may already be out of date.
Prompt injection remains an open problem for tool-using agents. It is manageable, but not solved.
Primary risks:
Mitigation baseline:
Treat every tool output as untrusted input unless explicitly verified.
MIT License - see LICENSE file for details.
โญ Star this repo if it helps you! โญ
</div>Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T04:10:55.440Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "canvas",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "lms",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "server",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "modelcontextprotocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "education",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "api",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "student",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "learning",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "assignments",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "courses",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:canvas|supported|profile capability:lms|supported|profile capability:mcp|supported|profile capability:server|supported|profile capability:modelcontextprotocol|supported|profile capability:education|supported|profile capability:api|supported|profile capability:student|supported|profile capability:learning|supported|profile capability:assignments|supported|profile capability:courses|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Dmontgomery40",
"href": "https://github.com/DMontgomery40/mcp-canvas-lms#readme",
"sourceUrl": "https://github.com/DMontgomery40/mcp-canvas-lms#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:50.518Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:50.518Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "83 GitHub stars",
"href": "https://github.com/DMontgomery40/mcp-canvas-lms",
"sourceUrl": "https://github.com/DMontgomery40/mcp-canvas-lms",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:50.518Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-dmontgomery40-mcp-canvas-lms/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to canvas-mcp-server and adjacent AI workflows.