LearnWorlds 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., "@LearnWorlds MCPList the 10 most recent users who signed up this month."
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.
ohneben's LearnWorlds MCP
Run your LearnWorlds school in plain language from AI assistants like Claude, Cursor, and any other MCP client.
This Model Context Protocol server exposes the LearnWorlds public API β all 94 endpoints, generated straight from the OpenAPI spec into MCP tools. Every tool is safety-categorized (π’ read-only / π‘ write / π΄ destructive) so your assistant knows what an action does before it calls it. It runs over stdio (Claude Desktop and other local launchers) or Streamable HTTP (hosted in Docker), and ships with retries, client-side rate limiting, and request timeouts so it holds up against a live school.
Why you'll want this
Some MCP servers just forward an API. This one is built to be safe to hand to an LLM and easy to run for real:
What you get | Why it matters |
All 94 endpoints, spec-driven | Full coverage of courses, users, enrollments, payments, subscriptions, coupons, certificates, seats, community and reporting β nothing hand-picked or left behind. |
Every tool is safety-categorized π’ / π‘ / π΄ | A banner at the top of each tool description tells the model exactly what it does β read, create, update or delete β before it acts. |
Machine-readable MCP annotations ( | Hosts that honor annotations (Claude included) can auto-trust reads and demand confirmation before anything destructive. |
Automatic retries with backoff | Transient |
Built-in rate limiting | Self-throttles under LearnWorlds' 30 requests / 10 s cap so a burst of tool calls never trips a |
Per-request timeouts | A hung upstream call is aborted and retried instead of freezing the server. |
Two transports: stdio and Streamable HTTP | Use it locally in Claude Desktop, or run one always-on server that any number of MCP clients reach over HTTP. |
Docker + docker-compose, health check, auto-restart | Production-style deployment out of the box: |
Optional bearer-token auth on the HTTP endpoint | Put the server behind a shared secret the moment it's reachable beyond localhost. |
Your secrets never reach the model | Credentials live in the server's environment and are injected on every request β the assistant only ever sees tool inputs and API responses. |
Drop-in spec updates | LearnWorlds ships a newer YAML? Replace one file and rebuild β new endpoints become new tools automatically, no code changes. |
How it compares
At the time of writing this appears to be the only dedicated LearnWorlds MCP server. You could instead point a generic OpenAPIβMCP wrapper at the spec β here's what that leaves on the table:
Capability | This project | Generic OpenAPIβMCP wrapper* |
All 94 LearnWorlds endpoints as tools | β | β |
Per-tool π’ / π‘ / π΄ safety category + banner | β | β |
| β | β |
| β | β |
Automatic retries on | β | β |
Client-side rate limiting (stays under 30 req / 10 s) | β | β |
Per-request timeout with abort | β | β |
| β | β |
Streamable-HTTP transport | β | β |
Docker + docker-compose, health check, auto-restart | β | β |
Optional bearer-token auth on the endpoint | β | β |
Credentials injected server-side, never sent to the model | β | β |
License | MIT | varies |
*Generic OpenAPIβMCP wrappers turn any Swagger/OpenAPI spec into MCP tools. They can reach the same endpoints, but treat every operation identically β no safety categories, no resilience, no deployment story, and no guardrails tuned for live school data. "β" = varies by tool / not guaranteed. Snapshot from July 2026.
Related MCP server: Canvas MCP Server
What you can do
Once it's connected, ask your assistant things like:
"List the 10 most recent users who signed up this month."
"Create a user for jane@example.com and enroll her in the 'Pro' bundle."
"Show me this month's payments and total revenue."
"Which users haven't completed the 'Onboarding' course yet?"
"Create a 20%-off coupon for the annual subscription plan."
"Pull completion analytics for our top 5 courses."
Tools are generated automatically from the API and grouped into π’ read-only, π‘ write, and π΄ destructive β so a well-behaved host can treat each group differently.
How it works
Claude / Cursor / any MCP client ββMCPβββΊ this server ββHTTPSβββΊ LearnWorlds API (your school)The server parses the bundled OpenAPI spec into MCP tools (resolving $refs and
guarding against recursive schemas), tags each with its safety category, and injects
your bearer token and Lw-Client header on every outgoing request. Your credentials
stay in the server's environment β the model never sees or handles them.
Requirements
A LearnWorlds school with API access β an access token and a Client ID (admin β Settings β Integrations β Developers), plus your school's API base URL. See Get your API credentials.
Docker (Docker Desktop on macOS/Windows) for the quick start below β or Node.js β₯ 18 to run from source.
Quick start (Docker)
1. Add your credentials. Copy the example config and fill it in:
cp .env.example .env
# edit .env β set LEARNWORLDS_BASE_URL, LEARNWORLDS_API_TOKEN, LEARNWORLDS_CLIENT_ID
# β set MCP_SHARED_TOKEN to a long random string if reachable beyond localhost2. Start the server:
docker compose up -d --buildThe bundled docker-compose.yml binds to 127.0.0.1:8765 only, so the server is
reachable from your machine but not the network.
3. Confirm it's running:
curl -s http://localhost:8765/health
# β {"status":"ok","server":"learnworlds-mcp","tools":94}4. Connect your MCP client. The MCP endpoint is http://localhost:8765/mcp.
Claude Desktop β add a custom connector (Settings β Connectors) pointing at the URL, or bridge it locally with
mcp-remote. Add this undermcpServersin your config, then fully quit and reopen the app:{ "mcpServers": { "learnworlds": { "command": "npx", "args": [ "mcp-remote", "http://localhost:8765/mcp", "--header", "Authorization: Bearer YOUR_MCP_SHARED_TOKEN" ] } } }(Drop the
--headerline if you leftMCP_SHARED_TOKENempty.)Claude Code β one command:
claude mcp add --transport http learnworlds http://localhost:8765/mcpClaude Cowork β shares Claude Code's MCP config, so the command above makes the tools available there too.
Prefer a prebuilt image?
Every push to main publishes a ready-to-run image to the GitHub Container Registry,
so you can skip the local build entirely:
docker run -d --name learnworlds-mcp -p 127.0.0.1:8765:8765 --env-file .env \
ghcr.io/ohneben/learnworlds-mcp:latestGet your API credentials
Log in to your LearnWorlds school admin.
Go to Settings β Integrations β Developers (the API screen).
Copy your Access Token β
LEARNWORLDS_API_TOKEN, and your Client ID βLEARNWORLDS_CLIENT_ID.Set
LEARNWORLDS_BASE_URLto your school's API base:https://<your-school>.learnworlds.com/admin/api. If your school uses a custom domain, use that host instead (e.g.https://academy.example.com/admin/api).
Put all three in .env. The server injects them on every request, so your assistant
never sees them.
Configuration
Everything is set in .env (copied from .env.example):
Variable | Required | Default | Description |
| β | β | Your school's API base URL |
| β | β | Bearer access token |
| β | β | Sent as the |
| β |
|
|
| β |
| HTTP listen port |
| β |
| HTTP bind address |
| β |
| HTTP MCP route |
| β | (off) | Require |
| β |
| Client-side requests per window ( |
| β |
| Rate-limit window in ms |
| β |
| Retries on |
| β |
| Per-attempt request timeout |
| β | (bundled) | Load a different OpenAPI YAML |
After changing .env, reload with docker compose up -d --force-recreate.
Tool safety categories
Each tool's description starts with one of these banners and carries the matching MCP annotations:
Banner | Count |
|
| Meaning |
π’ READ-ONLY | 59 |
|
| Fetches data only. Safe. |
π‘ WRITE Β· creates data | β |
|
|
|
π‘ WRITE Β· updates data | β |
|
|
|
π΄ DESTRUCTIVE Β· deletes | 8 |
|
|
|
The π‘ write tools total 27 (17 create + 10 update). Hosts that respect annotations
(Claude included) can require confirmation for destructiveHint tools and trust
readOnlyHint tools automatically.
Run
npm run list-tools(no credentials needed) to print the full catalog and the per-category counts at any time.
Area | π’ Read | π‘ Write | π΄ Delete |
Users | 10 | 7 | 1 |
Affiliates | 7 | 1 | 0 |
Community | 6 | 3 | 2 |
Courses | 5 | 3 | 0 |
Promotions (coupons) | 4 | 3 | 0 |
Reporting | 4 | 0 | 0 |
Payments | 3 | 0 | 0 |
Multiple seats | 3 | 3 | 2 |
User groups | 3 | 3 | 2 |
Bundles | 2 | 0 | 0 |
Assessments | 2 | 1 | 0 |
Subscription plans | 2 | 0 | 0 |
Certificates | 1 | 1 | 1 |
User subscriptions | 1 | 0 | 0 |
User roles | 1 | 0 | 0 |
Installments | 1 | 0 | 0 |
Leads | 1 | 0 | 0 |
Calendar | 1 | 0 | 0 |
Event logs | 1 | 0 | 0 |
Asynchronous actions | 1 | 0 | 0 |
Update user progress | 0 | 2 | 0 |
Total | 59 | 27 | 8 |
Run from source (stdio, no Docker)
Prefer the classic stdio mode for Claude Desktop? Build it locally:
npm install
npm run buildThen point Claude Desktop at the compiled entrypoint in claude_desktop_config.json:
{
"mcpServers": {
"learnworlds": {
"command": "node",
"args": ["/ABSOLUTE/PATH/Learnworlds-MCP/dist/index.js"],
"env": {
"MCP_TRANSPORT": "stdio",
"LEARNWORLDS_BASE_URL": "https://your-school.learnworlds.com/admin/api",
"LEARNWORLDS_API_TOKEN": "your-access-token",
"LEARNWORLDS_CLIENT_ID": "your-client-id"
}
}
}
}Keeping the spec current
The bundled spec/learnworlds-openapi.yaml is the source of truth for the tools. To
refresh against a newer API version, drop the new YAML in its place (or point
LEARNWORLDS_OPENAPI_PATH at it) and rebuild:
docker compose up -d --build # Docker
# or
npm run build # from sourceNew paths become new tools automatically β no code changes needed.
Development
npm install
npm run build # compile TypeScript β dist/
npm test # run the Vitest suite
npm run list-tools # print the categorized tool catalog (no credentials needed)CI builds and tests every push across Node 20 and 22; pushes to main also publish a
Docker image to the GitHub Container Registry.
Notes & conventions
Transports:
MCP_TRANSPORT=stdio(default) for local launchers;MCP_TRANSPORT=httpfor the always-on Streamable-HTTP server the Docker image runs.Paging: most
gettools acceptpage(and endpoint-specific filters); LearnWorlds paginates list responses (commonly 20β50 items per page).Rate limit: LearnWorlds allows 30 requests / 10 s; the server self-throttles at
LEARNWORLDS_MAX_REQUESTSperLEARNWORLDS_RATE_WINDOW_MS(default 25 / 10 s) and retries any429it still receives.Request bodies: write tools take a
bodyargument; its schema is resolved from the spec and shown to the model.
Security
Your API credentials live only in
.env, which is git-ignored. Never commit real secrets. If the token leaks, rotate it in LearnWorlds admin β Settings β Integrations β Developers (API).The HTTP endpoint is unauthenticated by default (fine on localhost). To expose it beyond your machine, set
MCP_SHARED_TOKENand send it as anAuthorization: Bearer <token>header β ideally behind TLS.
See SECURITY.md for the full policy and how to report a vulnerability.
Credits & license
An unofficial community integration for LearnWorlds; not affiliated with or endorsed by LearnWorlds. Built on the Model Context Protocol. Licensed under the MIT License.
Maintenance
Latest Blog Posts
- 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/ohneben/Learnworlds-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server