Back to Browse

Learnworlds MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

All 94 LearnWorlds LMS API endpoints as safety-categorized MCP tools (read/write/destructive).

About

All 94 LearnWorlds LMS API endpoints as safety-categorized MCP tools (read/write/destructive).

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-architected MCP server for the LearnWorlds API with strong security practices. Authentication and authorization are properly implemented, with enforced bearer-token auth on HTTP endpoints, environment-based credential injection, and comprehensive Host validation. The code demonstrates good security hygiene with proper input validation, request body limits, session management, and detailed security documentation. Minor findings relate to low-severity code quality issues that do not represent security risks. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity).

5 files analyzed Β· 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

What You'll Need

Set these up before or after installing:

Base URL of your LearnWorlds school's API, e.g. https://<your-school>.learnworlds.com/admin/apiOptional

Environment variable: LEARNWORLDS_BASE_URL

Bearer access token (LearnWorlds admin -> Settings -> Integrations -> Developers).Required

Environment variable: LEARNWORLDS_API_TOKEN

Your school's Client ID, sent as the Lw-Client header.Required

Environment variable: LEARNWORLDS_CLIENT_ID

Optional bearer token required on the /mcp endpoint. Empty = open (localhost only).Required

Environment variable: MCP_AUTH_TOKEN

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-ohneben-learnworlds-mcp": {
      "env": {
        "MCP_AUTH_TOKEN": "your-mcp-auth-token-here",
        "LEARNWORLDS_BASE_URL": "your-learnworlds-base-url-here",
        "LEARNWORLDS_API_TOKEN": "your-learnworlds-api-token-here",
        "LEARNWORLDS_CLIENT_ID": "your-learnworlds-client-id-here"
      },
      "args": [
        "-y",
        "learnworlds-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

ohneben's LearnWorlds MCP

Buy Me A Coffee


License & checks

CI License: MIT

MCP registries

MCP Registry Listed on mcpservers.org Learnworlds-MCP MCP server

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 getWhy it matters
All 94 endpoints, spec-drivenFull 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.
Descriptions written for agents, not humansEvery tool spells out its side effects, auth and rate-limit behavior, return shape, error codes, when not to reach for it, and which sibling tools are the alternatives.
Machine-readable MCP annotations (readOnlyHint, destructiveHint)Hosts that honor annotations (Claude included) can auto-trust reads and demand confirmation before anything destructive.
Automatic retries with backoffTransient 429 / 5xx responses are retried with jittered exponential backoff, honoring the server's Retry-After header.
Built-in rate limitingSelf-throttles under LearnWorlds' 30 requests / 10 s cap so a burst of tool calls never trips a 429.
Per-request timeoutsA hung upstream call is aborted and retried instead of freezing the server.
Two transports: stdio and Streamable HTTPUse 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-restartProduction-style deployment out of the box: docker compose up and it stays up.
Bearer-token auth on the HTTP endpointRequired as soon as the server is bound beyond loopback: without MCP_AUTH_TOKEN it refuses to start rather than exposing the API unprotected.
Your secrets never reach the modelCredentials 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 updatesLearnWorlds 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:

CapabilityThis projectGeneric OpenAPI→MCP wrapper*
All 94 LearnWorlds endpoints as toolsβœ…βœ…
Per-tool 🟒 / 🟑 / πŸ”΄ safety category + bannerβœ…βŒ
readOnlyHint / destructiveHint MCP annotationsβœ…βž–
$ref dereferencing + recursion-safe schemasβœ…βž–
Automatic retries on 429 / 5xx (honors Retry-After)βœ…βŒ
Client-side rate limiting (stays under 30 req / 10 s)βœ…βŒ
Per-request timeout with abortβœ…βž–
stdio transportβœ…βœ…
Streamable-HTTP transportβœ…βž–
Docker + docker-compose, health check, auto-restartβœ…βŒ
Enforced bearer-token auth on the endpointβœ…βŒ
Credentials injected server-side, never sent to the modelβœ…βž–
LicenseMITvaries

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

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_AUTH_TOKEN (required once the port is published beyond
#             127.0.0.1): openssl rand -hex 32

2. Start the server:

docker compose up -d --build

The 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 under mcpServers in 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_AUTH_TOKEN"
          ]
        }
      }
    }
    

    (Drop the --header line if you left MCP_AUTH_TOKEN empty.)

  • Claude Code β€” one command:

    claude mcp add --transport http learnworlds http://localhost:8765/mcp
    
  • Claude 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:latest

Get your API credentials

  1. Log in to your LearnWorlds school admin.
  2. Go to Settings β†’ Integrations β†’ Developers (the API screen).
  3. Copy your Access Token β†’ LEARNWORLDS_API_TOKEN, and your Client ID β†’ LEARNWORLDS_CLIENT_ID.
  4. Set LEARNWORLDS_BASE_URL to 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):

VariableRequiredDefaultDescription
LEARNWORLDS_BASE_URLβœ…β€”Your school's API base URL
LEARNWORLDS_API_TOKENβœ…β€”Bearer access token
LEARNWORLDS_CLIENT_IDβœ…β€”Sent as the Lw-Client header
MCP_TRANSPORTβ€”stdiostdio or http (the Docker image defaults to http)
PORTβ€”8765HTTP listen port
HOSTβ€”0.0.0.0HTTP bind address
MCP_HTTP_PATHβ€”/mcpHTTP MCP route
MCP_AUTH_TOKEN⚠️(off)Require Authorization: Bearer <token> on /mcp. Required when HOST is not a loopback address, otherwise the server refuses to start. Renamed from MCP_SHARED_TOKEN in 1.1.0
MCP_ALLOWED_HOSTSβ€”(automatic)Comma-separated hostnames accepted in the Host header (DNS-rebinding protection). Needed behind a reverse proxy
MCP_ALLOW_INSECUREβ€”(off)Lifts the startup refusal. Only for an endpoint nobody else can reach
MCP_SESSION_TTLβ€”1800Idle seconds before a session is dropped
MCP_MAX_SESSIONSβ€”256Maximum concurrent sessions
MCP_BODY_LIMITβ€”25mbLargest accepted request body
LEARNWORLDS_MAX_REQUESTSβ€”25Client-side requests per window (0 disables throttling)
LEARNWORLDS_RATE_WINDOW_MSβ€”10000Rate-limit window in ms
LEARNWORLDS_MAX_RETRIESβ€”3Retries on 429 / 5xx / network errors
LEARNWORLDS_TIMEOUT_MSβ€”30000Per-attempt request timeout
LEARNWORLDS_OPENAPI_PATHβ€”(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:

BannerCountreadOnlyHintdestructiveHintMeaning
🟒 READ-ONLY59truefalseFetches data only. Safe.
🟑 WRITE Β· creates dataβ€”falsefalsePOST β€” creates records (not idempotent; may duplicate).
🟑 WRITE Β· updates dataβ€”falsefalsePUT β€” modifies existing records in place (idempotent).
πŸ”΄ DESTRUCTIVE Β· deletes8falsetrueDELETE β€” removes a record. Confirm first.

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.

Under the banner, every description follows the same layout so an agent can act on the first read instead of probing:

LineWhat it answers
(purpose)What the endpoint does, straight from the OpenAPI spec, stated once.
BehaviorWhat the call does to the live school, whether it is idempotent, and how auth, throttling and retries are handled for it.
ParametersOnly what the input schema cannot say β€” the body wrapper, paging, and any renamed argument.
ReturnsThe HTTP <status> + JSON result shape and the error codes that can come back.
Use whenWhen to reach for it, when not to, and up to five sibling tools in the same area.

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
Users1071
Affiliates710
Community632
Courses530
Promotions (coupons)430
Reporting400
Payments300
Multiple seats332
User groups332
Bundles200
Assessments210
Subscription plans200
Certificates111
User subscriptions100
User roles100
Installments100
Leads100
Calendar100
Event logs100
Asynchronous actions100
Update user progress020
Total59278

Run from source (stdio, no Docker)

Prefer the classic stdio mode for Claude Desktop? Build it locally:

npm install
npm run build

Then 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 source

New 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. When the version in server.json is one the official MCP Registry does not yet list, that same run also publishes it there.

Notes & conventions

  • Transports: MCP_TRANSPORT=stdio (default) for local launchers; MCP_TRANSPORT=http for the always-on Streamable-HTTP server the Docker image runs.
  • Paging: most get tools accept page (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_REQUESTS per LEARNWORLDS_RATE_WINDOW_MS (default 25 / 10 s) and retries any 429 it still receives.
  • Request bodies: write tools take a body argument; 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 requires a token as soon as it is bound beyond loopback. Without MCP_AUTH_TOKEN the server refuses to start and the error explains what to do. Send it as an Authorization: Bearer <token> header, ideally behind TLS.
  • On localhost too: without a token the Host header is restricted to localhost names, so no web page can reach the endpoint via DNS rebinding. A loopback bind alone is not protection. Behind a reverse proxy, set MCP_ALLOWED_HOSTS.
  • Behind a reverse proxy, pin the Host header in the proxy to the internal upstream name and put exactly that into MCP_ALLOWED_HOSTS. The check then does not depend on the public domain and survives a domain change. (Tip from @WinFuture23.)
  • /health sits behind the Host check but in front of the token check, so a platform health check needs no token. It additionally accepts localhost, 127.0.0.1 and [::1] at all times, so the HEALTHCHECK in the bundled Dockerfile keeps working when you pin MCP_ALLOWED_HOSTS to a public hostname. If your platform probes over HTTP from elsewhere, its hostname has to be in the list: Railway sends Host: healthcheck.railway.app.

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.

Reviews

No reviews yet

Be the first to review this server!