BC Curriculum 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., "@BC Curriculum MCP ServerWhat are the Big Ideas for ADST grade 10?"
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.
BC Curriculum MCP Server
An MCP (Model Context Protocol) server that gives BC teachers structured access to the entire BC Ministry of Education K–12 curriculum. Connect with one line of config — no installs, no accounts, no technical setup.
Author: Paul de Groot — Vancouver, BC
What It Does
This server crawls curriculum.gov.bc.ca and makes the full BC K–12 curriculum queryable through 12 MCP tools. Teachers and curriculum designers can ask natural-language questions about Big Ideas, Curricular Competencies, Content standards, grade progressions, cross-subject connections, and more — grounded in the actual published curriculum data.
Data Coverage
Grades K–12 (Kindergarten through Grade 12)
9 English-stream subjects: ADST, Arts Education, Career Education, English Language Arts, Languages, Mathematics, Physical & Health Education, Science, Social Studies
Big Ideas, Curricular Competencies, and Content (the three-column KDU structure) with elaborations
Core Competencies (Communication, Thinking, Personal & Social)
First Peoples Principles of Learning (FPPL)
Assessment resources and Instructional samples
Full-text search across all curriculum content
Related MCP server: taxonomy-mcp
Quick Start
Option 1: Remote server (no install needed)
Add this to your MCP config:
{
"mcpServers": {
"bc-curriculum": {
"type": "http",
"url": "https://bc-curriculum-mcp.fly.dev/mcp"
}
}
}Or via Claude Code CLI:
claude mcp add bc-curriculum --transport http --url https://bc-curriculum-mcp.fly.dev/mcpOption 2: Run locally via npx
npx bc-curriculum-mcp-serverThis runs the server in stdio mode — compatible with any MCP client. You'll need a local bc-curriculum.sqlite database (clone the repo, install Playwright, and run the crawler — see For Developers below).
Option 3: Install globally via npm
npm install -g bc-curriculum-mcp-server
bc-curriculum-mcpOnce connected, ask things like:
"What are the Big Ideas for ADST grade 10?"
"Show me how science competencies build from grade 3 to 7"
"Find curriculum connections between math and ADST for grade 9"
"What are the First Peoples Principles of Learning?"
"What are the curricular competencies for Kindergarten math?"
Available Tools
Tool | What it does |
| Full-text search across all curriculum data |
| Get Big Ideas, Competencies, and Content for a course |
| List all available courses (filter by subject/grade) |
| Trace how curriculum builds across grade levels |
| Find competencies shared across subjects |
| Get Communication, Thinking, Personal/Social competencies |
| Get First Peoples Principles of Learning |
| Get assessment practices and guidance |
| Check data freshness and completeness |
| Find curriculum connections shared between two or more subjects at a grade |
| Show what changed in curriculum since a given date |
| View crawl history and change timeline for a course |
Architecture
┌──────────────────────┐ ┌─────────────────────────┐
│ Your Machine │ │ Fly.io (free tier) │
│ │ │ │
│ Playwright crawler │──────▶│ Express + SQLite │
│ builds SQLite DB │ SFTP │ read-only MCP server │
│ │ │ 256MB RAM │
└──────────────────────┘ └─────────────────────────┘
│
▼
Claude Desktop / Cowork / VS Codee / Antigravity
connects via MCP over HTTPSThe crawler runs locally using Playwright + headless Chromium to render the JavaScript-heavy curriculum.gov.bc.ca pages. It produces a SQLite database that gets uploaded to Fly.io. The deployed server is lightweight and read-only — no browser, no crawler, just serves pre-built data over MCP.
For Developers
Prerequisites
Node.js 18+
npm
Setup
git clone https://github.com/pdg6/bc-curriculum-mcp-server.git
cd bc-curriculum-mcp-server
npm install
npx playwright install chromium
npm run buildCrawl
# Quick test — just ADST
npm run crawl -- --subject adst
# Full K–12 crawl (~60-90 minutes)
npm run crawl:all
# Re-crawl everything (overwrites existing data)
npm run crawl:all -- --forceRun Locally
# stdio transport (for local MCP clients)
npm start
# HTTP transport (for remote connections)
TRANSPORT=http npm startHow It Works
The BC curriculum is organized in a three-column structure for every course:
Big Ideas — High-level conceptual understandings
Curricular Competencies — What students can do (grouped by domain)
Content — What students should know (the KDU items)
Each element can have elaborations — expandable details that clarify scope and provide examples. This server captures all three columns plus elaborations for every course across all 9 subjects and all grades K–12.
The Core Competencies (Communication, Thinking, Personal & Social) and First Peoples Principles of Learning are cross-cutting frameworks that apply across all subjects and are stored separately.
Data Source
All curriculum data is sourced from curriculum.gov.bc.ca, the official BC Ministry of Education curriculum website. The crawler respects the site with 1.5-second delays between requests.
License
MIT — see LICENSE.
The curriculum content itself is published by the BC Ministry of Education. This project provides structured access to that publicly available data.
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
- AlicenseAqualityDmaintenanceEnables LLMs to access Swedish educational data through Skolverket's open APIs, allowing users to search curricula, courses, schools, adult education programs, and analyze educational requirements and standards. Provides comprehensive tools for teachers, students, guidance counselors, and educational researchers to interact with official Swedish education data.2710MIT
- FlicenseNot gradedqualityBmaintenanceExposes Marble's open skill taxonomy (ages 4-15) as queryable MCP tools, enabling AI agents to search topics, find prerequisites, and plan learning paths.
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to query and validate BNCC (Brazilian curriculum) skills deterministically, preventing hallucinations by providing official data, search, and code validation tools.
- AlicenseNot gradedqualityBmaintenanceProvides access to the Korean elementary 2022 revised curriculum learning graph, enabling users to search and retrieve curriculum standards, learning topics, prerequisites, and roadmaps from a fully local database.5110MIT
Related MCP Connectors
Curated knowledge API for AI agents - skill packs, semantic search, validated patterns.
Search 4M+ podcasts & YouTube, transcribe any episode, search transcripts, generate AI lessons.
Citable retrieval across papers, books, patents, Wikipedia, and live social sources.
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/pdg6/bc-curriculum-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server