mcp-context-engineering
Version:
The intelligent context optimization system for AI coding assistants. Built with Cole's PRP methodology, Context Portal knowledge graphs, and production-ready MongoDB architecture.
29 lines (28 loc) • 958 B
JavaScript
/**
* Universal Context Engineering MCP Server
*
* Entry point for the MCP server that provides:
* - Cole's PRP methodology with systematic research
* - Context Portal knowledge graph integration
* - MongoDB-backed memory and learning
* - Universal AI agent optimization (Cursor, Windsurf, Claude Code)
*
* Perfect harmony: MongoDB (memory) → MCP (interface) → AI Agent (execution)
*/
// Load environment variables first
import 'dotenv/config';
import { server } from './mcp/server.js';
async function main() {
try {
console.error('Starting Universal Context Engineering MCP Server...');
console.error('Combining Cole\'s methodology + Context Portal + MongoDB Atlas');
console.error('Universal optimization for Cursor, Windsurf, Claude Code');
await server.run();
}
catch (error) {
console.error('Failed to start server:', error);
process.exit(1);
}
}
main();