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

@iflow-mcp/alexandrekumagae-ai-content-categorization-mcp

v1.0.0

Published

A Model Context Protocol (MCP) server for intelligent course content curation powered by GPT-4

Downloads

11

Readme

🎓 MCP Content Curation Server

Node.js TypeScript OpenAI License

A Model Context Protocol (MCP) server for intelligent course content curation powered by GPT-4. This server provides AI-driven tools to categorize, tag, and improve educational content.

✨ Features

  • 🗂️ Smart Categorization: AI-powered category suggestions for course content
  • 🏷️ Intelligent Tagging: Context-aware tag recommendations using GPT-4
  • ✨ Content Optimization: Improve titles and descriptions following best practices
  • 🔌 MCP Integration: Seamless integration with Claude Desktop and other MCP clients

🚀 Quick Start

Prerequisites

  • Node.js 18+
  • OpenAI API key

Installation

  1. Clone the repository

    git clone https://github.com/yourusername/mcp-content-curation-server.git
    cd mcp-content-curation-server
  2. Install dependencies

    npm install
  3. Configure environment

    cp .env.example .env
    # Edit .env and add your OpenAI API key
  4. Run the server

    # Development mode
    npm run dev
       
    # Production mode
    npm run build
    npm start

🔧 OpenAI Setup

  1. Get your API key from OpenAI Platform
  2. Add it to your .env file:
    OPENAI_API_KEY=sk-your-actual-api-key-here

🖥️ Claude Desktop Integration

Update your claude_desktop_config.json:

Development Mode:

{
  "mcpServers": {
    "content-curation": {
      "command": "npx",
      "args": ["tsx", "/path/to/your/project/src/server.ts"],
      "cwd": "/path/to/your/project",
      "env": {
        "NODE_ENV": "development"
      }
    }
  }
}

Production Mode:

{
  "mcpServers": {
    "content-curation": {
      "command": "node",
      "args": ["/path/to/your/project/dist/server.js"],
      "cwd": "/path/to/your/project",
      "env": {
        "NODE_ENV": "production"
      }
    }
  }
}

🛠️ Available Tools

1. suggest_category

Suggests the most appropriate category for course content.

Input:

{
  "title": "Python for Data Science",
  "description": "Learn data analysis with pandas and matplotlib"
}

2. suggest_tags

Recommends relevant tags based on course content.

Input:

{
  "title": "Digital Marketing Fundamentals",
  "description": "Master SEO, Google Ads, and social media marketing"
}

3. improve_content

Optimizes titles and descriptions following educational best practices.

Input:

{
  "title": "JavaScript Basics",
  "description": "Learn programming fundamentals"
}

📊 Data Structure

The server includes:

  • 5 main categories: Technology, Business, Design, Marketing, Analytics
  • 18 contextual tags: Organized by subject area
  • 10 sample courses: For similarity analysis and training

💡 Usage Examples

Categorization

Suggest a category for: "Advanced React Hooks" - "Custom hooks and performance optimization in React"

Tagging

What tags would you recommend for: "Machine Learning with Python"?

Content Improvement

Improve this content:
Title: "Excel Basics"
Description: "Learn spreadsheets"

🛠️ Development

Available Scripts

  • npm run dev - Start development server
  • npm run build - Compile TypeScript
  • npm start - Run production server
  • npm run debug - Run diagnostics

Project Structure

src/
├── server.ts              # Main MCP server
├── services/
│   ├── ai.service.ts       # OpenAI GPT-4 integration
│   └── curation.service.ts # Curation logic
├── data/
│   └── mock-data.ts        # Categories, tags, and sample data
└── types.ts               # TypeScript definitions