Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bc-curriculum": {
"url": "https://bc-curriculum-mcp.fly.dev/mcp",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'bc-curriculum-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked bc-curriculum-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A MCP server that integrates the Semantic Scholar API and the arXiv API so AI assistants (e.g. Claude Code, Cursor) can search and fetch academic paper metadata.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for io.github.pdg6/bc-curriculum and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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
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.
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/mcp
npx bc-curriculum-mcp-server
This 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).
npm install -g bc-curriculum-mcp-server
bc-curriculum-mcp
Once connected, ask things like:
| Tool | What it does |
|---|---|
bc_search_curriculum | Full-text search across all curriculum data |
bc_get_course_curriculum | Get Big Ideas, Competencies, and Content for a course |
bc_list_courses | List all available courses (filter by subject/grade) |
bc_get_grade_progression | Trace how curriculum builds across grade levels |
bc_get_competency_connections | Find competencies shared across subjects |
bc_get_core_competencies | Get Communication, Thinking, Personal/Social competencies |
bc_get_fppl | Get First Peoples Principles of Learning |
bc_get_assessment_resources | Get assessment practices and guidance |
bc_get_crawl_status | Check data freshness and completeness |
bc_search_cross_curricular | Find curriculum connections shared between two or more subjects at a grade |
bc_get_curriculum_changes | Show what changed in curriculum since a given date |
bc_get_course_history | View crawl history and change timeline for a course |
┌──────────────────────┐ ┌─────────────────────────┐
│ 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
... [View full README on GitHub](https://github.com/pdg6/bc-curriculum-mcp-server#readme)