npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

learnforge-mcp

v1.1.0

Published

LearnForge MCP Server — AI-powered adaptive learning tools for Claude Desktop

Readme

LearnForge MCP Server v1.1.0

A Model Context Protocol server that lets Claude Desktop (and other MCP-compatible AI assistants) generate and retrieve LearnForge lessons without leaving their interface.

Built by MetalMind Tech — Powered by Ark Intelligence

Quick Start

npx learnforge-mcp init

The interactive wizard will:

  1. Ask for your API key, JWT token, and user ID
  2. Auto-detect your Claude Desktop config path (macOS/Windows/Linux)
  3. Inject the mcpServers.learnforge entry
  4. Done in under 2 minutes

Available Tools (6)

| Tool | What it does | |------|--------------| | generate_lesson | Start 5-agent AI lesson generation | | get_lesson_status | Poll progress, get lesson when ready | | list_lessons | Browse lesson library with filters | | get_lesson | Read full lesson — scenes, quiz, code, score | | get_user_progress | Streak, scores, weak areas, AI recommendations | | ask_tutor | Socratic AI tutoring conversation |

Example Claude Conversation

You: Generate a lesson about quantum entanglement at the graduate level

Claude: I'll generate that lesson for you. [calls generate_lesson] Started! Task ID: abc-123... [calls get_lesson_status] Completed! 5 scenes, score: 85/100 [calls get_lesson] Here's the full lesson...

You: I don't understand the Bell inequality. Can you help?

Claude: [calls ask_tutor] Let me think about this with you...

Manual Setup

Add to claude_desktop_config.json:

| OS | Path | |----|------| | macOS | ~/Library/Application Support/Claude/claude_desktop_config.json | | Windows | %APPDATA%\Claude\claude_desktop_config.json | | Linux | ~/.config/Claude/claude_desktop_config.json |

{
  "mcpServers": {
    "learnforge": {
      "command": "node",
      "args": ["/path/to/mcp/server.js"],
      "env": {
        "LEARNFORGE_API_URL": "https://learnforge-core-production.up.railway.app",
        "LEARNFORGE_API_KEY": "lf_sk_your_key",
        "LEARNFORGE_JWT": "your_jwt_token",
        "LEARNFORGE_USER_ID": "your_supabase_uuid"
      }
    }
  }
}

Where to Get Credentials

| Credential | Where | |---|---| | API Key | learnforge-core.vercel.app/en/settings > API Keys > Create Key | | JWT Token | Browser DevTools > Application > Local Storage > supabase auth token > access_token | | User ID | LearnForge app > Profile > UUID |

Difficulty Levels

kindergarten · elementary · middle · high_school · college · graduate · phd · vocational

Architecture

mcp/
├── server.js           ← MCP stdio server (6 tools)
├── cli.js              ← npx learnforge-mcp init
├── package.json
├── .gitignore
├── .learnforge-config.json  (generated by wizard)
└── README.md

Commands

npx learnforge-mcp init     # Setup wizard
npx learnforge-mcp start    # Start server directly
npx learnforge-mcp help     # Show help

Error Handling

  • 401 — Invalid API key or JWT token
  • 429 — Rate limit exceeded (upgrade plan)
  • 403 — Free tier sandbox limit (3 lifetime API calls)
  • 5xx — Logged with full error context