CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

BC Curriculum

pdg6/bc-curriculum-mcp-server
STDIO, HTTPregistry active
Summary

Gives BC teachers and curriculum designers structured access to the entire K-12 British Columbia curriculum through 12 tools that query Big Ideas, Curricular Competencies, Content standards, and Core Competencies. Crawls curriculum.gov.bc.ca into a SQLite database and exposes operations like bc_get_course_curriculum, bc_get_grade_progression, bc_get_competency_connections, and bc_search_cross_curricular. Runs as a hosted HTTP endpoint on Fly.io or locally via stdio. Reach for this when building lesson plans, analyzing how concepts build across grades, finding cross-subject connections, or grounding curriculum questions in official BC Ministry of Education data without manually navigating the JavaScript-heavy government site.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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

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/mcp

Option 2: Run locally via npx

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).

Option 3: Install globally via npm

npm install -g bc-curriculum-mcp-server
bc-curriculum-mcp

Once 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

ToolWhat it does
bc_search_curriculumFull-text search across all curriculum data
bc_get_course_curriculumGet Big Ideas, Competencies, and Content for a course
bc_list_coursesList all available courses (filter by subject/grade)
bc_get_grade_progressionTrace how curriculum builds across grade levels
bc_get_competency_connectionsFind competencies shared across subjects
bc_get_core_competenciesGet Communication, Thinking, Personal/Social competencies
bc_get_fpplGet First Peoples Principles of Learning
bc_get_assessment_resourcesGet assessment practices and guidance
bc_get_crawl_statusCheck data freshness and completeness
bc_search_cross_curricularFind curriculum connections shared between two or more subjects at a grade
bc_get_curriculum_changesShow what changed in curriculum since a given date
bc_get_course_historyView 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 HTTPS

The 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 build

Crawl

# 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 -- --force

Run Locally

# stdio transport (for local MCP clients)
npm start

# HTTP transport (for remote connections)
TRANSPORT=http npm start

How It Works

The BC curriculum is organized in a three-column structure for every course:

  1. Big Ideas — High-level conceptual understandings
  2. Curricular Competencies — What students can do (grouped by domain)
  3. 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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packagebc-curriculum-mcp-server
TransportSTDIO, HTTP
UpdatedMar 27, 2026
View on GitHub