taxonomy-mcp
Exposes Marble's open skill taxonomy (ages 4-15) as queryable MCP tools, enabling AI agents to search topics, find prerequisites, and plan learning paths.
README
taxonomy-mcp
An MCP (Model Context Protocol) server that exposes Marble's open skill taxonomy (os-taxonomy) as queryable tools for AI agents.
The taxonomy is a typed DAG of 1,590 micro-topics spanning ages 4-15, connected by 3,221 hard/soft prerequisite edges, each with a human-written reason, per-topic evidence criteria, a templated assessment prompt, and precomputed centrality.
This repository is kylelynch/taxonomy-mcp. The upstream dataset lives at withmarbleapp/os-taxonomy.
The server is stateless, read-only, and requires zero secrets.
It holds no server-side accounts, mastery records, or database of any kind.
Tools that need to know what a learner already knows (frontier_for, path_to) take a list of mastered topic ids as an argument, so the calling agent owns all state.
The data is vendored into the repo and baked into the Docker image, so the server has no runtime network dependencies and every deploy is reproducible from the repo alone.
Tools
All nine tools are read-only and validated with zod.
| Tool | What it does |
|---|---|
search_topics |
Search the taxonomy by keyword and filters (subject, domain, age range, type); returns ranked topic summaries with ids for use in other tools. |
get_topic |
Full record for one topic: description, evidence criteria, assessment prompt, centrality, age range, standards, and prerequisite/unlock counts. |
prerequisites_of |
What must be learned before a topic, each with a human-written reason; supports transitive closure and hard/soft strength filtering. |
unlocks |
What a topic enables, i.e. the topics that depend on it, each with a reason; supports transitive closure. |
frontier_for |
Given a list of mastered topic ids, returns what is learnable right now: every unmastered topic whose hard prerequisites are all satisfied. |
path_to |
An ordered study path from current mastery to a goal topic, topologically sorted, with each step marked required or recommended. |
assess_topic |
The parent-facing assessment prompt and observable evidence criteria for checking mastery of a topic. |
taxonomy_overview |
The shape of the dataset: subjects with topic/domain counts, edge totals, age coverage, taxonomy version, and license/attribution. |
standards_lookup |
Maps taxonomy topics to curriculum standards (CCSS Math/ELA, NGSS K-5 and MS, UK National Curriculum, IB PYP, C3) in either direction. |
Resources
Two resource families are also exposed:
taxonomy://clusters/{subject}- one resource per subject that has clusters, serving parent-friendly summaries of what children learn, grouped by domain and starting age.taxonomy://about- dataset provenance, taxonomy version, upstream commit, license, and attribution.
Local quickstart
Install dependencies once:
npm install
Run the server locally over stdio (useful for local MCP clients and manual testing):
npm run dev
To wire it into Claude Code instead, this repo already ships a .mcp.json pointing at the stdio entry, so Claude Code will pick it up automatically when you open the project.
To run the streamable-HTTP transport locally on port 3002:
npm run dev:http
GET /healthz returns {status, version, taxonomyVersion, topics, edges}.
The MCP endpoint is POST /mcp.
Client configuration
Once the server is deployed (see Deployment below), point any MCP-capable client at the hosted endpoint. For Claude Code:
claude mcp add --transport http taxonomy https://taxonomy.kylelynch.us/mcp
Data provenance and license
The code in this repository is licensed under MIT; see LICENSE.
The curriculum data in data/ is not covered by that license.
It is vendored, unmodified, from Marble's os-taxonomy project and remains the property of Marble (Generative Spark, Inc.).
The database structure is licensed under the Open Database License (ODbL) 1.0, and the authored content within it is licensed under CC BY-SA 4.0.
Full provenance details, including the upstream commit and vendoring date, live in data/UPSTREAM.md.
Attribution to Marble also appears in the taxonomy://about MCP resource and in the taxonomy_overview tool output, so agents surfacing this data can pass attribution along.
Refreshing the data
The vendored data is not fetched at runtime.
To pull a fresh copy from upstream, validate it, and rewrite data/ and data/UPSTREAM.md:
npm run update-data
The script fetches the latest files from the upstream GitHub repository, verifies each file's sha256 and byte count against the fetched manifest, validates every file against the vendored JSON Schemas, and runs the same referential-integrity checks the server uses at boot. Review the diff and commit the result; the server never talks to the network at boot or during a request.
Deployment
The server is designed to run as a Docker container, built from the multi-stage Dockerfile in this repo, with the taxonomy data baked into the image.
It is deployed to Kyle's droplet behind nginx at https://taxonomy.kylelynch.us/mcp.
For the full build, deploy, and rollback procedure, see docs/deploy-runbook.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.