schoolbridge
Read-only integration with Canvas LMS, enabling AI agents to monitor assignments, grades, announcements, and calendar events, and to produce ranked task lists and study plans based on coursework data.
Planned integration with Google Classroom as a provider for accessing school assignments, grades, and announcements through the MCP server.
Planned integration with Moodle as a provider for accessing school assignments, grades, and announcements through the MCP server.
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., "@schoolbridgeWhat's new at school?"
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.
schoolbridge
Connect Canvas (and other school platforms) to AI agents.
schoolbridge watches your school's LMS and turns it into something an AI agent can actually use. When a teacher posts an assignment, uploads a grade, changes a due date, or makes an announcement, your agent finds out — and can brief you, rank your week, or build a study plan for the next test.
It speaks three dialects, so it works with almost any agent setup:
Interface | For | Example |
MCP server | Claude Code, Claude Desktop, Claude Cowork, any MCP client |
|
Agent skill ( | Hermes, OpenClaw, any Agent-Skills runtime |
|
JSON CLI | Shell-driven agents, cron jobs, scripts |
|
Event watcher | Push-style automations |
|
Canvas is the built-in provider. The provider interface is small and documented, so Google Classroom, Schoology, Moodle, and others can be added — see docs/PROVIDERS.md.
schoolbridge is read-only: it never writes anything back to your LMS.
Quick start
npm install -g schoolbridge # or run everything below with: npx schoolbridge …One-line install (ideal for VPSes and agent hosts — installs the CLI, connects Canvas, and installs the agent skill in one shot):
curl -fsSL https://raw.githubusercontent.com/Shoberman2/schoolbridge/main/install.sh | bash -s -- \
--base-url https://yourschool.instructure.com --token "<canvas-token>" --skill hermes(All flags optional — bare | bash just installs the CLI. --skill accepts hermes, openclaw, or agents.)
Try it instantly (no credentials)
Every command accepts --provider mock, which serves realistic sample data:
schoolbridge upcoming --provider mock 1. [CRITICAL 73] Chapter 12 Reading Quiz
US History · overdue by 20h · 10 pts · missing
2. [HIGH 66] Unit 4 Test: Cellular Energetics
AP Biology · due in 4d 23h · 100 pts · unsubmitted
3. [HIGH 59] Reconstruction DBQ Essay
US History · due in 2d 23h · 100 pts · unsubmitted
...Connect your real Canvas account
Log in to Canvas in a browser → Account → Settings → scroll to Approved Integrations → + New Access Token. Copy the token immediately.
Run:
schoolbridge init --base-url https://yourschool.instructure.com --token <paste-token>init verifies the connection, then saves the config to ~/.schoolbridge/config.json (created with 0600 permissions — it holds your token). You can also skip the file entirely and use the CANVAS_BASE_URL and CANVAS_ACCESS_TOKEN environment variables.
Can't get a token? Use the zero-credential calendar feed
Some schools disable student access tokens (and the Canvas mobile app doesn't have the token button at all). Every Canvas account still has a calendar feed that needs no token and no admin:
Open Canvas in a web browser → Calendar
Click "Calendar Feed" (bottom-right of the page) and copy the URL (ends in
.ics)Run:
schoolbridge init --provider ics --feed-url <paste-url>The ics provider covers assignments, due dates, and calendar events — so upcoming (with priority ranking), calendar, study planning, and change events (new_assignment, due_date_changed, new_calendar_event, calendar_event_changed) all work. The feed carries no grades, announcements, submissions, or feedback, so those surfaces stay empty until you can add a token or OAuth.
Third-party apps: requesting Canvas API permission (OAuth2)
Personal tokens are fine for your own agent on your own machine. When schoolbridge is embedded in a third-party app or service, the user shouldn't hand over a raw token — Canvas's answer is OAuth2, where the app requests permission and the user approves it on Canvas's own consent screen. schoolbridge implements the full flow:
Get a Developer Key. The app developer asks the school's Canvas admin to create one (Admin → Developer Keys → + API Key) with redirect URI
http://localhost:8765/oauth/callback. The admin controls whether to approve, and can scope/revoke the key at any time. This yields a client id and client secret.The user authorizes in their browser:
schoolbridge auth login --base-url https://yourschool.instructure.com \ --client-id 10000000000001 --client-secret <secret>schoolbridge opens Canvas's consent page, catches the callback on localhost (with CSRF
statevalidation), exchanges the code for tokens, verifies the connection, and stores the session.Tokens refresh automatically. Access tokens expire hourly; schoolbridge refreshes them transparently (and retries once on a 401), so agents and watchers keep running indefinitely.
Manage the session with schoolbridge auth status and schoolbridge auth logout (which revokes the token with Canvas, not just locally). Users can also revoke access anytime from Canvas → Account → Settings → Approved Integrations. A manual token (flag, env var, or init) always takes precedence over a stored OAuth session, and everything stays read-only either way.
Then:
schoolbridge upcoming # ranked work due this week (+ recent overdue work)
schoolbridge grades # course grades + recently graded assignments
schoolbridge announcements # recent teacher announcements
schoolbridge calendar # upcoming course calendar events
schoolbridge feedback # recent teacher comments on your work
schoolbridge events # everything that changed since the last checkRelated MCP server: Canvas LMS MCP Server
Use with Claude (MCP)
Claude Code
claude mcp add schoolbridge -- npx -y schoolbridge mcpClaude Desktop / Claude Cowork
Add to your MCP configuration (e.g. claude_desktop_config.json):
{
"mcpServers": {
"schoolbridge": {
"command": "npx",
"args": ["-y", "schoolbridge", "mcp"],
"env": {
"CANVAS_BASE_URL": "https://yourschool.instructure.com",
"CANVAS_ACCESS_TOKEN": "your-token"
}
}
}
}(If you ran schoolbridge init, the env block is optional — the server reads the saved config.)
Then just ask:
"What's new at school?" · "Rank everything I have due this week and plan my days." · "Make me a study plan for the biology test."
MCP tools
Tool | Returns |
| Active courses with current grade/score |
| Work due in the next N days (default 7) + recent overdue work, each with a 0–100 |
| One assignment with its full instructions as plain text |
| Teacher announcements from the last N days |
| Course calendar events for the next N days |
| Teacher comments on your submitted work |
| Course grades + everything graded in the last two weeks |
| Everything that changed since the last check (see Events) |
MCP prompts
Prompt | Does |
| Check for changes and brief the student |
| Rank the week's work and lay out a day-by-day plan |
| Build a day-by-day study plan for a test (args: |
Use with Hermes
schoolbridge ships a portable Agent Skills SKILL.md that teaches Hermes the whole workflow — setup, ranking, study plans, and event monitoring. Install it either way:
npm install -g schoolbridge
schoolbridge install-skill hermes # writes ~/.hermes/skills/schoolbridge/SKILL.mdor straight from this repo with Hermes' own installer:
hermes skills install https://raw.githubusercontent.com/Shoberman2/schoolbridge/main/skill/SKILL.mdHermes auto-discovers the skill on startup and activates it whenever the conversation is school-shaped ("what homework do I have?", "plan my week", "make a study plan for the bio test"). Add schoolbridge events --json to a heartbeat/schedule and Hermes will proactively tell you when a teacher posts an assignment, uploads a grade, or makes an announcement.
Use with OpenClaw
Same skill, OpenClaw flavor — the frontmatter carries an metadata.openclaw block that gates on the schoolbridge binary and points OpenClaw's installer at the npm package:
npm install -g schoolbridge
schoolbridge install-skill openclaw # writes ~/.openclaw/skills/schoolbridge/SKILL.mdPer-workspace instead: copy skill/ into <workspace>/skills/schoolbridge/. For proactive alerts, add a line to your HEARTBEAT.md such as: "Run schoolbridge events --json; if it prints events, tell me about them."
There's also schoolbridge install-skill agents for the shared ~/.agents/skills directory used by other Agent-Skills-compatible runtimes.
Use with any other agent (shell/JSON)
Every read command takes --json and prints clean, stable JSON — pipe it straight into your agent's context:
schoolbridge upcoming --json --days 7
schoolbridge grades --json
schoolbridge announcements --json --days 3
schoolbridge assignment 101 5002 --json # full details incl. instructionsPolling for changes
schoolbridge events diffs the LMS against the previous run and prints only what changed. The first run saves a baseline and prints nothing. State lives in ~/.schoolbridge/state.<provider>.json.
schoolbridge events --json # one JSON event per line; empty output = nothing new
schoolbridge events --reset # start over from a fresh baselineA cron heartbeat for a shell-based agent:
*/15 8-22 * * * schoolbridge events --json | your-agent ingest-school-eventsPush mode
watch polls on an interval, prints events to stdout as JSON lines (logs go to stderr), and can push each batch onward:
schoolbridge watch --interval 15m --exec 'your-agent brief --stdin' # JSON payload on stdin
schoolbridge watch --interval 15m --webhook https://your-agent.example/hooks/schoolThe webhook/exec payload:
{
"source": "schoolbridge",
"provider": "canvas",
"generatedAt": "2026-08-17T20:15:00.000Z",
"events": [ … ]
}Events
Every event has the same shape, so agents can pattern-match on type:
{
"type": "grade_posted",
"occurredAt": "2026-08-17T20:15:00.000Z",
"courseId": "101",
"courseName": "AP Biology",
"title": "Cell Respiration Lab Report",
"summary": "Grade posted in AP Biology: “Cell Respiration Lab Report” — 47/50 (94%).",
"url": "https://yourschool.instructure.com/courses/101/assignments/5001",
"data": { "assignmentId": "5001", "score": 47, "grade": "47", "pointsPossible": 50 }
}
| Fires when |
| A teacher posts an assignment, quiz, or test |
| An assignment is rescheduled |
| A grade appears on previously ungraded work |
| An existing grade is revised |
| A teacher posts an announcement |
| A teacher opens a discussion topic |
| Something lands on a course calendar (review session, field trip, in-class test…) |
| A calendar event is rescheduled |
| New course content is published (pages, linked resources…) |
| A file is added to a course |
| A teacher comments on your submitted work |
| Your overall course grade moves |
Coverage degrades gracefully: if your institution disables a surface (e.g. the Files tab), that category is silently skipped rather than erroring. When upgrading schoolbridge, newly added categories baseline quietly on the first poll instead of flooding you with "new" events for things that already existed.
summary is always a ready-to-speak sentence; data carries the structured before/after values.
Priority ranking
list_upcoming_work / schoolbridge upcoming attach a priority score (0–100) and label (critical / high / medium / low) to each item. It weighs:
due-date proximity (heaviest factor),
point value,
test-likeness (quizzes, or names matching test/exam/midterm/final),
missing/overdue status (boost) and already submitted (drops to ~0).
It's deliberately a hint, not a verdict — the intended pattern is for the AI to use it as a starting order and override it with judgment (start the essay before the worksheet, even if the worksheet is due first).
Use as a library
import { CanvasProvider, listUpcoming, checkEvents, StateStore } from "schoolbridge";
const provider = new CanvasProvider({ baseUrl: "https://yourschool.instructure.com", token: process.env.CANVAS_ACCESS_TOKEN! });
const ranked = await listUpcoming(provider, 7);
const { events } = await checkEvents(provider, new StateStore(provider.name));Configuration reference
Resolution order for every setting: CLI flag → environment variable → ~/.schoolbridge/config.json.
Setting | Flag | Env var |
Provider ( |
|
|
Canvas URL |
|
|
Canvas token |
|
|
Config/state directory | — |
|
Privacy & safety
Your token and all state stay on your machine; schoolbridge talks only to your school's Canvas host (and, if you opt in, your own webhook).
All operations are read-only against the LMS.
Treat your Canvas token like a password. You can revoke it any time from Canvas → Account → Settings.
Roadmap
Providers: Google Classroom, Schoology, Moodle, PowerSchool
Calendar export (ICS) of upcoming work
Native push (Canvas live events) where institutions allow it
Contributing
PRs welcome — especially new providers. See CONTRIBUTING.md and docs/PROVIDERS.md. The mock provider and npm test let you develop without any school credentials.
License
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
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 Connectors
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Let AI agents query data and act across all your business apps via MCP.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with Canvas LMS and Gradescope, allowing users to query courses, assignments, modules, calendar events, and find relevant resources using natural language.19ISC
- 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.1637414MIT
- AlicenseAqualityBmaintenanceMCP server that connects AI assistants to Instructure Canvas LMS, enabling teachers and administrators to manage courses, assignments, grades, and more through natural language.80281MIT
- AlicenseAqualityDmaintenanceTurns Canvas LMS into a scriptable pipeline and exposes it to AI assistants via MCP for querying courses, grades, assignments, and syncing files using natural language.143MIT
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/Shoberman2/schoolbridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server