ai-school-mcp
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., "@ai-school-mcpFind me a track on AI governance."
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.
AI School MCP server
Gives any MCP client - Claude Code, Claude Desktop, or anything else speaking the protocol - the ability to search and read the free AI School curriculum: 550+ tracks covering AI engineering, governance, security, and applied AI by profession.
The point is not "an AI that knows about AI". It is that when an assistant answers a question about, say, chunking strategy or the EU AI Act, it can point at a specific lesson you can go and read, instead of producing a fluent paragraph you have no way to check.
Install
One command, nothing to clone. Node 20+ and git are the only requirements: no API key, no account, no server to run.
Claude Code
claude mcp add ai-school -- npx -y github:Lilly-Tech-Collab/ai-school-mcpClaude Desktop - add to claude_desktop_config.json:
{
"mcpServers": {
"ai-school": {
"command": "npx",
"args": ["-y", "github:Lilly-Tech-Collab/ai-school-mcp"]
}
}
}Pin a version if you would rather not track main:
claude mcp add ai-school -- npx -y github:Lilly-Tech-Collab/ai-school-mcp#v1.0.0The trade-off: npx from a git source re-fetches on every launch, so
the server takes roughly 5 seconds to start each time your client opens it,
and it needs git on PATH. Once this is on npm the same command with
ai-school-mcp in place of the github: spec will start in about a second and
drop the git requirement. If the delay bothers you before then, use the clone
below, which starts instantly.
From a clone
Faster to start, and the right setup for contributing or for pointing at a local copy of the site:
git clone https://github.com/Lilly-Tech-Collab/ai-school-mcp.git
cd ai-school-mcp
npm install
npm test # smoke-tests the handshake, tools and a live API callclaude mcp add ai-school -- node "$PWD/server.js"Set AI_SCHOOL_SITE to point the server at a different host; it defaults to
https://lillytechsystems.com.
The server reads the public static curriculum API at
https://lillytechsystems.com/ai-school/api/v1/, which is a set of JSON files
on the same host as the site. Nothing is authenticated and nothing is written.
Related MCP server: Educational Tutor MCP Server
Tools
Tool | What it does |
| Search lesson titles across the whole curriculum. Returns titles and URLs. |
| List course tracks, optionally filtered. |
| One track with its full lesson list, so you can see a course's structure. |
| Fetch a lesson's full text as readable markdown-ish output. |
Resources
URI | Contents |
| Counts, licence terms, endpoint list. |
| Every track with lesson counts. |
Notes
read_lessononly fetcheslillytechsystems.com. A "read this URL" tool that accepts arbitrary hosts is an SSRF primitive handed to whoever wrote the prompt, so the host check is deliberate and should stay.Search is title-only and deliberately simple. The full-text index is 4 MB and belongs in the browser, not in an MCP round trip; if title matching does not find it,
list_tracksthenget_trackusually will.The catalogue is cached per process. A long-running client fetches it once. Restart the server to pick up newly published lessons.
Content licence. Lessons are free to read, link to and quote with attribution. Republishing whole lessons is not permitted. The metadata (titles, descriptions, URLs) may be used freely with attribution. See
aischool://catalogue.
Local development
npm run inspect # opens the MCP Inspector against this serverThe server writes only to stderr; stdout is the protocol channel.
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
- FlicenseAqualityDmaintenanceEnables access to ZEN University's syllabus content through MCP implementation, allowing users to get course recommendations and consultation about curriculum requirements via AI assistants.26
- Flicense-qualityDmaintenanceTransforms documentation repositories into interactive educational content and provides standardized access to AI-generated structured courses through MCP protocol. Generates multi-complexity learning paths from docs and enables AI tutoring applications to interact with course content.
- Alicense-qualityBmaintenanceEnables AI agents to search, read, and traverse documentation bundles in Open Knowledge Format via MCP tools.77564MIT
- Alicense-qualityDmaintenanceProvides RAG (Retrieval Augmented Generation) access to technical documentation through MCP, enabling LLMs to search and retrieve relevant documentation on-demand.4MIT
Related MCP Connectors
Free Memory-First AI Operator course as an MCP server. Bundled curriculum, no account needed.
Read-only MCP connector serving the Run It on AI book; index and Implementation Blocks are free.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
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/Lilly-Tech-Collab/ai-school-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server