A Model Context Protocol (MCP) server for intelligent course content curation powered by GPT-4. Provides AI-driven tools to categorize, tag, and improve educational content with seamless Claude Desktop integration.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"content-curation": {
"cwd": "/path/to/your/project",
"env": {
"NODE_ENV": "development"
},
"args": [
"tsx",
"/path/to/your/project/src/server.ts"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for intelligent course content curation powered by GPT-4. Provides AI-driven tools to categorize, tag, and improve educational content with seamless Claude Desktop integration.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education / ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Just a Better Chatbot. Powered by Agent & MCP & Workflows.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for Ai Content Categorization Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
Clone the repository
git clone https://github.com/yourusername/mcp-content-curation-server.git
cd mcp-content-curation-server
Install dependencies
npm install
Configure environment
cp .env.example .env
# Edit .env and add your OpenAI API key
Run the server
# Development mode
npm run dev
# Production mode
npm run build
npm start
.env file:
OPENAI_API_KEY=sk-your-actual-api-key-here
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"
}
}
}
}
suggest_categorySuggests the most appropriate category for course content.
Input:
{
"title": "Python for Data Science",
"description": "Learn data analysis with pandas and matplotlib"
}
suggest_tagsRecommends relevant tags based on course content.
Input:
{
"title": "Digital Marketing Fundamentals",
"description": "Master SEO, Google Ads, and social media marketing"
}
improve_contentOptimizes titles and descriptions following educational best practices.
Input:
{
"title": "JavaScript Basics",
"description": "Learn programming fundamentals"
}
The server includes:
Suggest a category for: "Advanced React Hooks" - "Custom hooks and performance optimization in React"
What tags would you recommend for: "Machine Learning with Python"?
Improve this content:
Title: "Excel Basics"
Description: "Learn spreadsheets"
npm run dev - Start development servernpm run build - Compile TypeScriptnpm start - Run production servernpm run debug - Run diagnosticssrc/
├── server.ts # Main MCP server
├── services/
│ ├── ai.service.ts # OpenAI GPT-4 integration
│ └── curation.service.ts # Curation logic
├── data/
│ └── mock-data.ts # Categories
... [View full README on GitHub](https://github.com/alexandrekumagae/ai-content-categorization-mcp#readme)